Explain #pragma statements.
Answer / Ashish Khetal
"#pragma statement" is a non-standard preprocessing instruction used in C and C++ programming languages. It allows programmers to influence the behavior of the preprocessor, compiler, or other processing tools during compilation. The syntax is '#pragma <token>', where '<token>' is a specific string that provides instructions to the preprocessor. For example, "#pragma once" is often used to prevent multiple inclusions of the same header file.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is d'n in c?
write a program to remove occurrences the word from entered text?
What is difference between array and pointer in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is bash c?
whats the use of header file in c?
What is the use of the restrict keyword?
a simple program in c language
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
write program on arrays
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
is forign key will be unique key any table or not?