fork download
  1. #include<stdio.h>
  2.  
  3. void main()
  4. { int A;
  5. int B;
  6. int C;
  7. printf("Enter the value of A and B: ");
  8. scanf("%d%d",&A,&B);
  9. C=A+B;
  10. printf("\nC=%d",C );
  11. }
  12.  
Runtime error #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
Enter the value of A and B: 
C=1428161689