How to tokenize a string in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of setfill in c++?
What are the uses of pointers?
Eplain extern keyword?
How can a struct in c++ differs from a struct in c?
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
What do you mean by inheritance in c++? Explain its types.
What is pure virtual function? Or what is abstract class?
When to use “const” reference arguments in a function?
Define a nested class.
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; }
When do we run a shell in the unix system? How will you tell which shell you are running?
We use library functions in the program, in what form they are provided to the program?