Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
script3r
GitHub Repository: script3r/os161
Path: blob/master/user/testbin/pt1/pt1.c
734 views
1
#include <unistd.h>
2
#include <stdio.h>
3
#include <stdlib.h>
4
5
int main( int argc, char *argv[] ) {
6
(void)argc;
7
(void)argv;
8
9
printf( "my pid is %d\n", getpid() );
10
return 0;
11
}
12
13