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 |
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What is the explanation for cyclic nature of data types in c?
What are the 5 types of organizational structures?
what are bitwise shift operators?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
what do you mean by defining a variable in our c code?
what is the flow of execution in cprogram? ex:printf();,scanf();
what is answer for perfect number????????????????
How was c created?
hat is a pointer?
What is the right way to use errno?
How are Structure passing and returning implemented by the complier?