fork download
  1. #include<stdio.h>
  2. int main(){
  3. int a,b,c,sum;
  4. printf("Enter the value of a,b,c:");
  5. scanf("%d %d %d",&a,&b,&c);
  6. sum=(a+b+c);
  7. printf("%d",sum);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5320KB
stdin
100
stdout
Enter the value of a,b,c:-481743775