which will return integer?
a) int*s ( )
b) ( int* ) s( )
c) int ( *s ) ( )
Answer Posted / chandu
c) int (*s)()
s is pointer to a function which returns integer
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
explain what are actual arguments?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What the different types of arrays in c?
What is the difference between constant pointer and constant variable?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is difference between arrays and pointers?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Do pointers take up memory?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Which header file is used for clrscr?
What is the difference between printf and scanf in c?
What is a floating point in c?
Explain About fork()?
Explain what is operator promotion?
All technical questions