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 will be the outcome of the following conditional statement if the value of variable s is 10?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
what is use of malloc and calloc?
Not all reserved words are written in lowercase. TRUE or FALSE?
What is a string?
Can we initialize extern variable in c?
What is the meaning of 2d in c?
Is c a great language, or what?
Explain how do you convert strings to numbers in c?
Explain what is page thrashing?
Can main () be called recursively?
Why is c platform dependent?
Why does everyone say not to use gets?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Explain pointer. What are function pointers in C?