I need to find a specific string between two strings

how do I do it?



I need to find a specific string between two strings how do I do it?..

Answer / magesh

You can use concatenate symbol which is the common rule of
all the languages

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C++ General Interview Questions

What flag means?

0 Answers  


Write the program for fibonacci in c++?

20 Answers   TATA, Wipro,


What is the difference between *p++ and (*p)++ ?

0 Answers  


When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?

0 Answers  


What are the differences between the function prototype and the function defi-nition?

0 Answers  






Write a function that swaps the values of two integers, using int* as the argument type?

0 Answers  


What is a conversion constructor?

1 Answers  


What are the differences between malloc() and calloc()?

0 Answers  


Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()

0 Answers  


What is the difference between #define debug 0 and #undef debug?

0 Answers  


Explain the term memory alignment?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Categories