You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<stdio.h>
int main{
int a,b,c;
printf("Enter the first number:\n);
scanf("%d",&a);
printf("Enter the second number:\n);
scanf("%d",&b);
c=a+b;
printf("sum= %d", c);
return 0;
}
The text was updated successfully, but these errors were encountered:
#include<stdio.h>
int main{
int a,b,c;
printf("Enter the first number:\n);
scanf("%d",&a);
printf("Enter the second number:\n);
scanf("%d",&b);
c=a+b;
printf("sum= %d", c);
return 0;
}
The text was updated successfully, but these errors were encountered: