1#include <stdio.h>
2
3int main(int argc, char *argv[ ], char *envp[ ]) {
4    printf("hello from main\n");
5    return 0;
6}