what are # pragma staments?
Answer / Arun Prakash Gupta
#pragma is a compiler directive in C that provides a way for programmers to instruct the preprocessor to perform certain operations. These statements do not generate any code and are used to control the various phases of the compilation process.
| Is This Answer Correct ? | 0 Yes | 0 No |
can we have joblib in a proc ?
Write a C program to perform some of the operation which can be performed using Single linked list
Explain what are run-time errors?
Write a program to find given number is even or odd without using any control statement.
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
what is difference b/w extern & volatile variable??
What are static functions?
how to find greatet of 10 numbers without using array?
What is null pointer in c?
What is scanf () in c?
How can I write functions that take a variable number of arguments?