extended code to advanced input functionality

This commit is contained in:
hello 2025-02-09 03:34:15 +05:30
parent 0fc6c74996
commit 97baad76c5

View File

@ -8,7 +8,7 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <unistd.h> #include <unistd.h>
void main () { int main () {
// array declaration // array declaration
char *strings[5]; char *strings[5];
@ -73,4 +73,5 @@ void main () {
printf("THE SYSTEM ENCOUNTERED AN ERROR. Please try again later or debug the code. \n"); printf("THE SYSTEM ENCOUNTERED AN ERROR. Please try again later or debug the code. \n");
} }
return 0;
} }