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
How can my program discover the complete pathname to the executable from which it was invoked?
What are the different types of control structures?
Explain union. What are its advantages?
What is fflush() function?
Why we use int main and void main?
What is the most efficient way to count the number of bits which are set in an integer?
Can we declare variable anywhere in c?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is an endless loop?
Write a program to print factorial of given number without using recursion?
What is the easiest sorting method to use?
Is it better to use a macro or a function?
Is main is user defined function?
What is the c language function prototype?
What is break in c?