You are on page 1of 1

1

2 #include <stdio.h>
3
4 void main(int argc, char **argv){
5 int counter=7;
6
7 if(counter==10){
8 printf("Counter=10 \n");
9 }else{
10 printf("Counter not 10 \n");
11 }
12
13 }
14

You might also like