Question: #include #include int main() { int i; for (i=0; i < 3; i++) { execl(/bin/printf, printf, hello, NULL); } return 0; } How many hello
#include
#include
int main()
{
int i; for (i=0; i < 3; i++) {
execl("/bin/printf", "printf", "hello", NULL);
}
return 0;
}
How many hello will this program print?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
