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

write a program to find out number of on bits in a number?

17 Answers   Huawei, Microsoft,


How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 Answers  


Explain how can you be sure that a program follows the ansi c standard?

0 Answers  


What is an array in c?

0 Answers  


#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }

4 Answers   HCL,






What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.

9 Answers   Adobe,


what is the difference between call by value and call by reference?

5 Answers   Genpact, Global Logic, Infosys,


Explain logical errors? Compare with syntax errors.

0 Answers  


int *a[5] refers to

12 Answers   TCS,


What are qualifiers?

0 Answers  


What is #ifdef ? What is its application?

0 Answers   TCS,


Categories