SharpScribbles icon indicating copy to clipboard operation
SharpScribbles copied to clipboard

c add of two integers;

Open akenapej opened this issue 1 year ago • 0 comments

#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; }

akenapej avatar Mar 27 '23 15:03 akenapej