Answer Posted / vishnu
int temp(char t, int k)
{
t = 'd';
k = 90;
return 1;
}
int main()
{
int (* fun)(char ch, int i);// function pointer
fun = temp;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of structure padding in c?
what is the function of pragma directive in c?
Is c is a middle level language?
What is the purpose of & in scanf?
When is the “void” keyword used in a function?
Give differences between - new and malloc() , delete and free() ?
What is the size of structure in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
When should the register modifier be used? Does it really help?
Differentiate between full, complete & perfect binary trees.
What are the 4 types of organizational structures?
What is #error and use of it?
Describe how arrays can be passed to a user defined function
What are the different properties of variable number of arguments?
What are valid signatures for the Main function?