If Statement - C Programming C Programming /*Any Number is input through the keyboard. write a If program.*/ #include< stdio.h > #include< conio.h > void main() { int n; n=1; clrscr(); //clrscr() is the function of #include< conio.h > header file which will clear previous output of program printf("Enter the Number"); scanf("%d",&n); if(n>0) { printf("It is If Statement"); } getch(); } Read more » Tweet Share Share Share Share Related Post
ConversionConversion EmoticonEmoticon