fork download
  1. #include <stdio.h>
  2.  
  3. int main () {
  4. int age;
  5. printf ("Enter your age: 19");
  6. scanf ("%d",&age);
  7. if (age> 18);
  8. printf ("Your age is bigger than 18. Age is %d\n", age);
  9. return 0;
  10. }
  11.  
  12.  
  13.  
Success #stdin #stdout 0s 4564KB
stdin
1
2
10
42
11
stdout
Enter your age: 19Your age is bigger than 18. Age is 1