main()
{
printf("hello");
fork();
}
No Answer is Posted For this Question
Be the First to Post Answer
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
write a progam to compare the string using switch case?
Write a C program to count the number of email on text
What is structure in c definition?
what is difference b/w extern & volatile variable??
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
how to find a 5th bit is set in c program
write a program to find out number of on bits in a number?
how to find the size of the data type like int,float without using the sizeof operator?
Tell me about low level programming languages.
Is main() function predfined or userdefined?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,