What is c strings syntax?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between passing by reference and passing a reference?
What is an iterator?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
How long will it take to learn programming?
List the special characteristics of constructor.
What is a catch statement?
Explain linked list using c++ with an example?
What is #include ctype h in c++?
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.
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
What is different in C++, compare with unix?
How to declare a function pointer?