f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / raj
f1 should have a prototype
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the types of type qualifiers in c?
What is meant by operator precedence?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is the explanation for modular programming?
Difference between exit() and _exit() function?
Do you know the use of fflush() function?
How can you return multiple values from a function?
Where is volatile variable stored?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Define circular linked list.
What functions are in conio h?
Does c have enums?
all c language question
Where we use clrscr in c?