What is static function? Explain with an example
No Answer is Posted For this Question
Be the First to Post Answer
What are the main characteristics of C++ as a programming language?
how is returning structurs from functions?Show an eg?
What is the importance of mutable keyword?
How compile and run c++ program in turbo c++?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
Why is c++ a mid-level programming language?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
What is the difference between while and do while loop? Explain with examples.
How do you differentiate between overloading the prefix and postfix increments?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What is the use of ::(scope resolution operator)?