f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / banavathvishnu
a value will be first assigned to C in the Function and
latter it will be incremented in f() function.
so the value C remains 2
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
write a c program in such a way that if we enter the today date the output should be next day's date.
Can you return null in c?
What are the salient features of c languages?
What are the different types of pointers used in c language?
How can you tell whether two strings are the same?
Do you know the difference between malloc() and calloc() function?
Which is the best website to learn c programming?
Which is the memory area not included in C program? give the reason
What are the types of c language?
What should malloc() do?
Is void a keyword in c?
What is the method to save data in stack data structure type?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is an identifier?