fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your codegoes here
  5. char buffer[100];
  6. int i = 0;
  7. i++;
  8. sprintf(buffer, "%d",i);
  9. printf("%s", buffer);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
1