Can a list of string be stored within a two dimensional array?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 2 main types of data structures?
can anybody please tell me how to write a program in c++,without using semicolon(;)
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
Can constructor be static in c++?
Which bit wise operator is suitable for turning off a particular bit in a number?
Can we use clrscr 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.
Can member functions be private?
Write a C++ Program to Generate Random Numbers between 0 and 100
Why ctype h is used in c++?
Do vectors start at 0?
What is prototype in c++ with example?