Difference between static global and global?
Answer Posted / sandeep gautham
a program can be spread across two or more files...
so, a global variable can be accessed by all the files..
where as, a static global variable can be accessed only by
the file in which it is declared...static means permanent
and hence the value in static global variable is shared by
all the functions in that file...
| Is This Answer Correct ? | 35 Yes | 5 No |
Post New Answer View All Answers
Explain what is class definition in c++ ?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What is setfill c++?
What is setiosflags c++?
What are keywords in c++?
Is c++ free?
What is stl containers in c++?
What is the role of C++ shorthand's?
What is c++ virtual inheritance?
What is difference between array and vector in c++?
How const int *ourpointer differs from int const *ourpointer?
How can you quickly find the number of elements stored in a dynamic array?
Define the operators that can be used with a pointer.
Why we use #include iostream in c++?