fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char *str = "gcc‬‬ ‫‪-g‬‬ ‫‪-m32‬‬ ‫‪-o‬‬ ‫‪skip‬‬ ‫‪skip.c";
  6.  
  7. while (*str)
  8. {
  9. printf("%d %c\n", *str, *str);
  10. str++;
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 4312KB
stdin
Standard input is empty
stdout
103 g
99 c
99 c
-30 �
-128 �
-84 �
-30 �
-128 �
-84 �
32  
-30 �
-128 �
-85 �
-30 �
-128 �
-86 �
45 -
103 g
-30 �
-128 �
-84 �
-30 �
-128 �
-84 �
32  
-30 �
-128 �
-85 �
-30 �
-128 �
-86 �
45 -
109 m
51 3
50 2
-30 �
-128 �
-84 �
-30 �
-128 �
-84 �
32  
-30 �
-128 �
-85 �
-30 �
-128 �
-86 �
45 -
111 o
-30 �
-128 �
-84 �
-30 �
-128 �
-84 �
32  
-30 �
-128 �
-85 �
-30 �
-128 �
-86 �
115 s
107 k
105 i
112 p
-30 �
-128 �
-84 �
-30 �
-128 �
-84 �
32  
-30 �
-128 �
-85 �
-30 �
-128 �
-86 �
115 s
107 k
105 i
112 p
46 .
99 c