What are types of preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What does it mean when a pointer is used in an if statement?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
Explain the difference between the local variable and global variable in c?
can we define a function in structure?
How do you initialize pointer variables?
What is an volatile variable?
What's wrong with "char *p; *p = malloc(10);"?
What are the primitive data types in c?
What is dynamic variable in c?
Explain what is the benefit of using #define to declare a constant?