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 is stack , heap ,code segment,and data segment
When should structures be passed by values or by references?
What is the value of c?
Can you add pointers together? Why would you?
Do you know the use of 'auto' keyword?
Are enumerations really portable?
Explain spaghetti programming?
How do you determine the length of a string value that was stored in a variable?
How can I send mail from within a c program?
When would you use a pointer to a function?
How do you list files in a directory?
Explain high-order bytes.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Place the #include statement must be written in the program?
How do we declare variables in c?