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 |
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
Explain what is page thrashing?
How do you list files in a directory?
How many identifiers are there in c?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Explain bitwise shift operators?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Is c language still used?
How pointer is different from array?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function