main()
{
printf("hello");
fork();
}
No Answer is Posted For this Question
Be the First to Post Answer
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
How do you print an address?
State two uses of pointers in C?
what is the main use of c where it can use the c
List some of the static data structures in C?
What is s or c?
Explain pointers in c programming?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is structure of c program?
What is the purpose of clrscr () printf () and getch ()?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }