CS计算机代考程序代写 //ex2.c

//ex2.c
#include
#include // This is needed for sleep()

int main(void){// forcing the flush with fflush
int i=0;
char line[100]=”Hello, my name No-Name\n”;

while(line[i] != ‘\0’){
putchar(line[i++]);
fflush(stdout); // flush std output buffer
sleep(1);
}
}