ADITI Company Programming Program

Q. What is the output of the following program

#include
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
}

Read Solution (Total 1)

ADITI Other Question

Q. What is the output of the program given below

#include
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%dn",i);
}
Q. What is the memory allocated by the following definition ?

int (*x)[10];