What is #pragma statements?


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

Post New Answer

More C Interview Questions

main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


Are pointers integers in c?

0 Answers  


read an array and search an element

1 Answers  


What are formal parameters?

0 Answers  


What are pointers in C?

5 Answers   KPIT,






What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

0 Answers  


What is the difference between exit() and _exit() function?

0 Answers  


What is the difference between malloc() and calloc()?

0 Answers  


What is the function of multilevel pointer in c?

0 Answers  


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

0 Answers  


What is volatile, register definition in C

0 Answers   Cognizant,


how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0

4 Answers   Wipro,


Categories