If statement in c language | C LANGUAGE
Continue and download
C program for if statement :
C program Output :
Copy from below :
#include<stdio.h>
#include<conio.h>
int main()
{
int num;
printf("enter any number which is greater then 10 ");
scanf("%d",&num);
if(num>=11)
{
printf("condition is satisfied");
printf("\n entered number is : %d ",num);
}
}
👇
Download pdf file :
0 Comments
Thanks for comments.......your comment is very valueable for us.Thanks for joining us.