which will return integer?
a) int*s ( )
b) ( int* ) s( )
c) int ( *s ) ( )
Answer / chandu
c) int (*s)()
s is pointer to a function which returns integer
| Is This Answer Correct ? | 10 Yes | 0 No |
Why does not c have an exponentiation operator?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
tell me the full form of c?
Which one would you prefer - a macro or a function?
What is the difference between GETS();AND SCANF();
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
Write the syntax and purpose of a switch statement in C.
write a program to print data of 5 five students with structures?
What is bin sh c?
write a program to find the frequency of a number
Is it possible to have a function as a parameter in another function?