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 |
What is the acronym for ansi?
what is the full form of c language
progrem to generate the following series 1 12 123 1234 12345
what's the return value of malloc()
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
diff .between strcture and union
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
how do we remove the printed character in printf statement and write next it it
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
WHAT IS HIGH LEVEL LANGUAGE?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
Explain what is page thrashing?