Explain #pragma in C.
Answer / nashiinformaticssolutions
A compiler-specific directive used for special purposes like disabling warnings.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a c program to demonstrate character and string constants?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Is it better to use a macro or a function?
The variables are int sum=10,SuM=20; these are same or different?
What is variable in c with example?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
I have a varargs function which accepts a float parameter?
What is the difference between int and float?
What is fflush() function?
What is a structural principle?
how can f be used for both float and double arguments in printf? Are not they different types?