a.c 101 B

12345678
  1. #include <stdio.h>
  2. int main(void) {
  3. int i=0;
  4. i++;
  5. printf("hello,world %d\n",i);
  6. return 0;
  7. }