Συντονιστής: konnn
elefher έγραψε:οκ παιδια το προβλημα με το προγραμμα λυθηκε.τωρα αυτο που θελω ειναι να μαθω τι συμβενει με τη conio.h γιατι δεν υπαρχει?και πως θα την βαλω?
Wikipedia, the free encyclopedia έγραψε:conio.h is a header file used in old MS-DOS compilers to create text user interfaces. It is not part of the C programming language, the C standard library, ISO C nor is it required by POSIX.
elefher έγραψε:ναι αλλα ποια βιβλιοθηκη πρεπει να βαλω για να την εχω στο eclipse?
/*
* test.cpp
*/
#include <iostream>
using namespace std;
int main(){
char c;
cin >> c;
while (c!='q'){
cout << c << endl;
cin >> c;
}
}