f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / jack
in line 4, a's value is pushed on to stack and then
increaments.........In line 6 the function f1 pops the a's
value and assigned to c so .......c is value is 2.......
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Is main is a keyword in c?
Explain data types & how many data types supported by c?
Why void main is used in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What are the advantages of c language?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is d'n in c?
Is c pass by value or reference?
Is sizeof a keyword in c?
What are file streams?
What is a string?
What is the difference between typedef struct and struct?
What oops means?
What is the difference between struct and typedef struct in c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?