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 wrong with this declaration?
how to capitalise first letter of each word in a given string?
Describe dynamic data structure in c programming language?
What is the -> in c?
Can one function call another?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Write a program to print fibonacci series without using recursion?
Can a program have two main functions?
Explain bitwise shift operators?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is %g in c?
What is pointer to pointer in c?
Difference between strcpy() and memcpy() function?