This commit is contained in:
Emmanuel Srivastava
2024-12-16 14:34:53 +01:00
parent 41b3074d58
commit e3f82e9512
6 changed files with 121 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
int main(void){
return EXIT_SUCCESS;
}

View File

@@ -0,0 +1,7 @@
#include <stdlib.h>
int main(int argc, char const *argv[])
{
/* code */
return 0;
}