What is include directive in c?


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

Post New Answer

More C Interview Questions

hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel

0 Answers  


what do you mean by inline function in C?

0 Answers   IBS, TCS,


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

0 Answers  


What are the advantages of using new operator as compared to the function malloc ()?

0 Answers   NIIT,






Write a program to find the given number is odd or even without using any loops(if,for,do,while)

4 Answers   CNC, Gokul,


what is the difference between i++ and ++i?

5 Answers  


Compare array data type to pointer data type

0 Answers  


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


Explain is it valid to address one element beyond the end of an array?

0 Answers  


What is the significance of scope resolution operator?

0 Answers   Agilent, ZS Associates,


What is the difference between break and continue?

0 Answers  


Categories