Explain #pragma statements.


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

Post New Answer

More C Interview Questions

How reliable are floating-point comparisons?

0 Answers  


What does %p mean c?

0 Answers  


a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


What are predefined functions in c?

0 Answers  






What will the preprocessor do for a program?

0 Answers   Aspire, Infogain,


what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"

4 Answers  


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


Write down the program to sort the array.

4 Answers   Impiger,


Explain the difference between exit() and _exit() function?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


what is function pointer?

2 Answers   Wipro,


Categories