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
Are pointers integer?
write a program to find out prime number using sieve case?
How can a number be converted to a string?
What is the return type of sizeof?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Explain the difference between malloc() and calloc() in c?
Why we write conio h in c?
What are the types of data files?
What are the 5 organizational structures?
What is difference between structure and union in c?
Why static variable is used in c?
How will you divide two numbers in a MACRO?
which type of aspect you want from the student.
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.