In C, What is the #line used for?
Answers were Sorted based on User's Feedback
The #line directive tells the preprocessor to set the compiler's reported values for the line number and filename to a given line number and filename.
| Is This Answer Correct ? | 2 Yes | 0 No |
The #line directive tells the preprocessor to set the compiler's reported values for the line number and filename to a given line number and filename.
| Is This Answer Correct ? | 0 Yes | 0 No |
How arrays can be passed to a user defined function
about c language
How #define works?
When is an interface "good"?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
What are local and global variables?
What the different types of arrays in c?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Why main function is special give two reasons?
What is meant by high-order and low-order bytes?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is table lookup in c?