What is use of #include in c?


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

Post New Answer

More C Interview Questions

#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


Can you tell me how to check whether a linked list is circular?

1 Answers  


What is use of integral promotions in c?

0 Answers  


Here is a neat trick for checking whether two strings are equal

0 Answers  


/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*

6 Answers  






write a program to add two numbers of any size.....(remember any size)

1 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


What 'lex' does?

0 Answers   Tech Mahindra,


How many keywords (reserve words) are in c?

0 Answers  


main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }

2 Answers  


What does sizeof return c?

0 Answers  


What is const and volatile in c?

0 Answers  


Categories