Write a C program to find the sum of two numbers.
#include<studio.h>
int main(){
int a=5;
int b=1;
int c = a+b;
printf("%d", c);
}
Output
6
Rahul MasterG
Tags :
#include<studio.h>
int main(){
int a=5;
int b=1;
int c = a+b;
printf("%d", c);
}
6