What is typeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Explain how can you determine the size of an allocated portion of memory?
write a progam to compare the string using switch case?
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Explain what is wrong with this program statement? Void = 10;
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Why is #define used?
What are types of preprocessor in c?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }