fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. main()
  4. {
  5. char linha1 = '*';
  6. int cont = 0;
  7. while(cont<=2)
  8. {
  9. cont = cont + 1;
  10. printf("%c",linha1);
  11. }
  12. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
***