#07_Add.c

 #include<stdio.h>


int main()
{
    int mohit,b,c;
    printf("enter value of a\n");
    scanf("%d",&mohit);
    printf("enter value of b\n");
    scanf("%d",&b);
    c=mohit+b;
    printf("addition is %d\n"c);
    return 0;
    
}

Comments

Popular posts from this blog

#64_Funtions for File I/O in C

#51_Ex_Game