MCQ Practice
How many time "Example" will print in this program? #include #include #include int main() { if( execl("/bin/ls","ls",NULL) == -1){ perror("execl"); exit(1); } printf("Examplen"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A
