Explain pointer. What are function pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
I have a varargs function which accepts a float parameter?
How many data structures are there in c?
What is meant by global static? why we have to use static variable instead of Global variable
What is the explanation for modular programming?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is volatile variable how do you declare it?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
What is the difference between typedef struct and struct?
what r the cpu registers r ther?
Explain how many levels deep can include files be nested?