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
Can we compile a program without main() function?
How many data structures are there in c?
What is default value of global variable in c?
Write a program to use switch statement.
What is huge pointer in c?
Explain how can you avoid including a header more than once?
How many main () function we can have in a project?
What is console in c language?
What is actual argument?
What is the size of structure in c?
In a header file whether functions are declared or defined?
What is volatile variable in c?
What is queue in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are the 4 types of programming language?