Can you define which header file to include at compile time?


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

Post New Answer

More C Interview Questions

If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

0 Answers  


Write a program to accept a character & display its corrosponding ASCII value & vice versa?

9 Answers  


Differentiate between calloc and malloc.

0 Answers   Wipro,


What is NULL pointer?

0 Answers   Infosys,


Explain what is page thrashing?

0 Answers  






write a program to print data of 5 five students with structures?

0 Answers  


What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }

5 Answers  


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?

1 Answers   Wipro,


what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits

2 Answers   Wipro,


write a program of bubble sort using pointer?

3 Answers   TCS,


A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone

1 Answers  


How can I open a file so that other programs can update it at the same time?

0 Answers  


Categories