What is the general form of #line preprocessor?


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

Post New Answer

More C Interview Questions

What is the difference between text and binary modes?

0 Answers  


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


What is the purpose of type declarations?

0 Answers  


How can I convert a number to a string?

0 Answers  


Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

4 Answers   OpenFeel,






Explain what are bus errors, memory faults, and core dumps?

0 Answers  


program that accepts amount in figures and print that in words

2 Answers   Infosys, Lovely Professional University, Wipro,


Please list all the unary and binary operators in C.

3 Answers  


which is faster execution: loops or recursion?

3 Answers  


Why structure is used in c?

0 Answers  


what is differnence b/w macro & functions

1 Answers  


Why can arithmetic operations not be performed on void pointers?

0 Answers  


Categories