proc() {
static i=10;
printf("%d",i);
}
If this proc() is called second time, what is the output?
Answer Posted / guest
11
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What is variable initialization and why is it important?
Why calloc is better than malloc?
Why clrscr is used after variable declaration?
What is wrong with this program statement?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What are the different properties of variable number of arguments?
What does int main () mean?
What is call by value in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What does d mean?
What is an example of structure?
explain what is fifo?
What is the difference between typedef struct and struct?
What is wild pointer in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only