Ah Ok, no lo habia visto.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
#include <stdio.h>
#include <ncurses.h>
FILE* fichero;
int kbhit(void)
{
int ch = getch();
if (ch != ERR) {
ungetch(ch);
return 1;
} else {
return 0;
}
}
int main() {
initscr();
noecho();
nodelay(stdscr, true);
fichero = fopen("string.txt","a");
while (1){
if (kbhit()){fputc(getch(),fichero); fflush(fichero); }
refresh();
}
return 0; }
#include <stdio.h>
#include <ncurses.h>
FILE* fichero;
int kbhit(void)
{
int ch = getch();
if (ch != ERR) {
ungetch(ch);
return 1;
} else {
return 0;
}
}
int main() {
initscr();
noecho();
nodelay(stdscr, true);
fichero = fopen("string.txt","a");
while (1){
if (kbhit()){fputc(getch(),fichero); fflush(fichero); }
refresh();
}
return 0; }
#include <ncurses.h>
#include <fstream>
using namespace std;
char cadena1[250], cadena2[250], cadena3[250];
int kbhit(void)
{
int ch = getch();
if (ch != ERR) {
ungetch(ch);
return 1;
} else {
return 0;
}
}
int main() {
initscr();
noecho();
nodelay(stdscr, true);
ofstream fs ("string.txt");
while (1){
if (kbhit()){fs << getch(); }
refresh();
}
return 0; }