C Programming if, else if, else tutorial in Linux

Опубликовано: 19 Июль 2026
на канале: Leave Knowledge
28
1

C Programming if, else if, else (conditional statement) tutorial in Linux

!!! I can not write "less than", "greater than" in the description field and replace it with "(", ")" !!!
-- #include(stdio.h) --

#include(stdio.h)
int main(){
if(1 && 1){
printf("if\n");
}else if(1==1 || 0){
printf("else if\n");
}else{
printf("else\n");
}
return 0;
}
=if