I know this is probably something silly, but I am missing something. I put the following into my compiler and I am not getting it. I know I need something to make this work, because everyone else is getting it. My project is to enter the following into the compiler and tell what the output would be (like 'abc').
char Ch='/';
while (Ch !='d')
{
putchar(Ch);
Ch = getchar();
}
Please help!
char Ch='/';
while (Ch !='d')
{
putchar(Ch);
Ch = getchar();
}
Please help!
Comment