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 difference between functions abs() and fabs()?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What header files do I need in order to define the standard library functions I use?
Which function in C can be used to append a string to another string?
what is the role you expect in software industry?
What are Macros? What are its advantages and disadvantages?
write a program to find the given number is prime or not
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Why do we need arrays in c?
What is an auto keyword in c?
Does c have circular shift operators?
What is the difference between union and structure in c?
Write a program that accept anumber in words
Who developed c language and when?