Offer

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 :

                                                     

Post a Comment

0 Comments