main()
{
printf("hello");
fork();
}


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.

0 Answers  


What is a program flowchart?

0 Answers  


What is memory leak in c?

0 Answers  


void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }

3 Answers  


what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }

9 Answers   HCL,






How will you write a code for accessing the length of an array without assigning it to another variable?

0 Answers  


State the difference between realloc and free.

0 Answers   Aricent,


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

0 Answers   HCL,


from which concept of 'c', the static member function of 'c++' has came?

1 Answers   Bosch,


What is gets() function?

0 Answers  


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  


While(1) { } when this loop get terminate is it a infinite loop?

5 Answers  


Categories