declare afunction pointer to int printf(char *)?
Answer / sunil singh
the function pointer to an int printf(char *) will be:
int (*ptr)(char*);
Now you can assign the function address to the pointer to a
function.
ptr = printf;
Is This Answer Correct ? | 12 Yes | 1 No |
Differentiate between declaring a variable and defining a variable?
Explain what are run-time errors?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
what is unsigened char and what is the difference from char
Please list all the unary and binary operators in C.
What is volatile c?
What is return type in c?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
What is clrscr ()?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
main() {int a=200*200/100; printf("%d",a); }
Why do we use stdio h and conio h?