Implement a 2 dimensional array by one dimentional array
Answer / answer and question
one to one array,multi dimension array
Is This Answer Correct ? | 3 Yes | 4 No |
What are the advantages of c++? Explain
Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
How would you find out if a linked-list is a cycle or not?
Which software is used to run c++ program?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is vector pair in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What is the difference between ++ count and count ++?
What are the new features that iso/ansi c++ has added to original c++ specifications?