Can we specify variable field width in a scanf() format string? If possible how?
No Answer is Posted For this Question
Be the First to Post Answer
How do I open binary files?
List out function which we can call without using object
What is the difference between strcpy() and strncpy()?
Is java the same as c++?
What can I use instead of namespace std?
Are there any special rules about inlining?
Write any small program that will compile in "C" but not in "C++"
What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?
6 Answers HCL, Integra, IPMC, ORG,
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
Explain the difference between 'operator new' and the 'new' operator?
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 are the advantages of using friend classes?