Ayuda para Modificar una linea
Quiero quitar esta linea como se podria hacer para que no se afecte al prgrma "while(!kbhit())";
#include <conio.h>
#include <dos.h>
#include<stdio.h>
int a=1,b,c=0;
char nombre[50];
void main()
{
clrscr();
gotoxy(2,2);printf("Introduce una frase:");
do
{
c++;
nombre[c]=getche();
}
while(nombre[c]!=13);
while(!kbhit())
{
for(b=1;b<=c;b++)
{
if(a+b>=78) { gotoxy(a+(b-77),8); }
else { gotoxy(a+b,8);
}
printf("%c", nombre[b]);
}
delay(110);
gotoxy(1,8); clreol();
a++;
if(a==78) { a=1; }
}
}
#include <conio.h>
#include <dos.h>
#include<stdio.h>
int a=1,b,c=0;
char nombre[50];
void main()
{
clrscr();
gotoxy(2,2);printf("Introduce una frase:");
do
{
c++;
nombre[c]=getche();
}
while(nombre[c]!=13);
while(!kbhit())
{
for(b=1;b<=c;b++)
{
if(a+b>=78) { gotoxy(a+(b-77),8); }
else { gotoxy(a+b,8);
}
printf("%c", nombre[b]);
}
delay(110);
gotoxy(1,8); clreol();
a++;
if(a==78) { a=1; }
}
}
