Logo 
Search:

Interview FAQs

Submit Interview FAQ
Home » Interview FAQsRSS Feeds
Visual C++
Comments: 0

How to clrscr() function working in Visual C++

In order to make clrscr() function of Turbo C, to works in Visual C++ add following namespace.

#include


And instead of using clrscr() function make use of system("cls"); method.


int main( void )
{
system("cls");
return 0;
} ...
Posted By:Vivek Patel      Posted On: Oct 16

Visual C++
Comments: 0

How to make cout and cin working in Visual C++

In order to have cout and cin works you need to add following libraries and namespace.

#include
#include
using namespace std;
Posted By:Vivek Patel      Posted On: Oct 16

MS Office
Comments: 1

Why does excel display number signs(###) in a cell?

A #### error value occurs when the cell contains a number, date, or time that is wider than the cell or when the cell contains a date and/or time formula that produces a negative result.
Posted By:Shruti Sharma      Posted On: Jan 20

Testing
Comments: 0

Game Testing

Game testing one of the best upcoming area to work in ,
Multimedia and Gaming earns the 70 % of the profit in computer science , so going for game testing online or offline are getting new opportunities for graduate student .....
Posted By:Parag Kaveri      Posted On: May 17

MS Office
Comments: 1

Name the function, which can get you the current date.

Today()..........................................
Posted By:Shruti Sharma      Posted On: Jan 20

C++ Programming
Comments: 1

Which of the following option will create a user-defined namespace in ANSI C++?

Options

a) namespace namespace_name{….};
b) namespace(){namespace_name}
c) namespace namespace_name{….}
d) namespace(){namespace_name}

Answer : c) namespace namespace_name{….}
Posted By:Shruti Sharma      Posted On: Dec 15

  1  2  3  4  5  6  7  8  9  10