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