Answers for "getch() c++"

C++
2

getch c++ library

#include<iostream.h>
#include<conio.h>

void main()
{
int a=10, b=20;
int sum=0;
clrscr();  // use clrscr() after variable declaration
sum=a+b;
cout<<"Sum: "<<sum;
getch();
}
Posted by: Guest on April-15-2020
3

getch() c++

#include <conio.h>
int getch();
Posted by: Guest on December-21-2020

Browse Popular Code Answers by Language