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 |
Define recursion in c.
What does the format %10.2 mean when included in a printf statement?
Why cann't whole array can be passed to function as value.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Write a program for Overriding.
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
What is the difference between %d and %*d in C
Which is the memory area not included in C program? give the reason
What is the right type to use for boolean values in c? Is there a standard type?
write a program for egyptian fractions in c?