This commit is contained in:
2024-03-26 11:15:25 +03:00
parent 4ecfebcd1b
commit 04d946e28c
38 changed files with 91 additions and 0 deletions

9
DeitelC/Chapter3/test2.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void) {
int i = 4;
int a = 3;
(i > 3) ? printf("Yes") : printf("No");
}