How would you implement a substr() function that extracts a sub string from a given string?
No Answer is Posted For this Question
Be the First to Post Answer
What is exception handling? Does c++ support exception handling?
What is unary operator? List out the different operators involved in the unary operator.
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
What is the insertion operator and what does it do?
What does override mean in c++?
How long it will take to learn c++?
What are the different operators in C++?
If a header file is included twice by mistake in the program, will it give any error?
explain the reference variable in c++?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Explain what are accessor methods?