fork download
  1. /* using a loop to make a table of cubes */
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. int i = 1;
  6.  
  7. for (printf("aaa\n"); i < 10; i++)
  8. printf("The ASCII value \n");
  9.  
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
aaa
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value 
The ASCII value