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 |
What does dm mean sexually?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How do you list files in a directory?
What is use of integral promotions in c?
What are control structures? What are the different types?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Why ordinary variable store only one value
Give differences between - new and malloc() , delete and free() ?
Lists the benefits of c programming language?
Write a program to check armstrong number in c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
can we store values and addresses in the same array? explain