What is while loops?
No Answer is Posted For this Question
Be the First to Post Answer
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
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 does it mean to declare a member function as virtual?
How much is size of struct having 1 char & 1 integer?
Is there finally in c++?
Explain the virtual inheritance in c++.
What are the different types of comments allowed in c++?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is array in c++ example?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
How do you initialize a string in c++?
What are maps in c++?