fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. int i = 10 ;
  6. int j = i ;
  7. int a = 2 ,b = 3 ,c = 4 ,d = 5;
  8.  
  9. printf("The value of i is %d and value of j is %d \n " , i,j);
  10. printf("The value of a is %d and value of b is %d \n " , a,b);
  11. printf("The value of c is %d and value of d is %d \n " , c,d);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
The value of i is 10 and value of j is 10 
 The value of a is 2 and value of b is 3 
  The value of c is 4 and value of d is 5