+ 1
I wanted to know the mistake I am doing in this programming as I am not able to execute it as I tried in online gdb
#include <studio.h> Int main() { int a,b; printf("Enter two integers"); scanf("%d%d",&a,&b); printf("%d+%d=%d",a,b,a+b); return 0; }
8 Answers