[ create a new paste ] login | about

Link: http://codepad.org/F2iDjNtL    [ raw code | fork ]

C, pasted on Jan 22:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(){
    setbuf(stdout,NULL);
    if(fork == 0){
        printf("k");
    }

}


Output:
No errors or program output.


Create a new paste based on this one


Comments: