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 |
Why do we need functions in c?
Which is better malloc or calloc?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Write a program with dynamically allocation of variable.
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
how is the examination pattern?
Explain in detail how strset (string handling function works )pls explain it with an example.
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
What is the meaning of c in c language?
What is %g in c?
What is array of structure in c programming?
what is the defrenece between structure and union