f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / vignesh1988i
c=2
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
Where static variables are stored in c?
State the difference between realloc and free.
Why is c so important?
What does the format %10.2 mean when included in a printf statement?
What is the best way of making my program efficient?
Why is c called c?
What is static function in c?
Are there any problems with performing mathematical operations on different variable types?
what is the role you expect in software industry?
In a byte, what is the maximum decimal number that you can accommodate?
What’s the special use of UNIONS?
What are the usage of pointer in c?
What is a far pointer in c?
What is a macro in c preprocessor?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none