A function 'q' that accepts a pointer to a character as
argument and returns a pointer to an array of integer can
be declared as:
A)int (*q(char*)) []
B)int *q(char*) []
C)int(*q)(char*) []
D)None of the Above
Answers were Sorted based on User's Feedback
Explain the use of keyword 'register' with respect to variables.
Compare and contrast compilers from interpreters.
What is your stream meaning?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
What is a spanning Tree?
Why we use int main and void main?
Is the following code legal? struct a { int x; struct a b; }
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
How can I open a file so that other programs can update it at the same time?
how to execute a program using if else condition and the output should enter number and the number is odd only...