Basic C program for beginners
Hello , today we are going to see the basic or we may say simplest c program for beginners
आप लोग पहले ही देखा होगा कि कैसे आप सी प्रोग्राम लिखते है आज हम आपको दो नंबर को जोड़ने का प्रोग्राम बताएंगे
#include<stdio.h>
int main()
{ int a,b,c;
printf("enter value of a = ");
scanf("%d",&a);
printf("enter value of b = ");
scanf("%d",&b);
c=a+b;
printf("addition of the no is %d ",c);
return 0;
}
Copy the above code and run on any c compiler.
Tags:
C programming