+ 1
what this code do ??
#include<iostream> #include<conio.h> using namespace std; int main() { int c = 0; while (getche() != 13) c++; cout << c; }
1 Answer
#include<iostream> #include<conio.h> using namespace std; int main() { int c = 0; while (getche() != 13) c++; cout << c; }