How do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between const char *p, char const *p, const char* const p
5 Answers Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
What are the types of data types and explain?
What is the difference b/w main() in C language and main() in C++.
how to swap two integers 1 and 32767 without using third variable
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
what is default constructor?
c program to print a name without using semicolon
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Explain what is output redirection?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )