Program to accept a string and print it by using the while loop - 100 Most Important C# Programs

100 Most Important C# Programs

28. Program to accept a string and print it by using the while loop.

Code:

# include <stdio.h>

# include <conio.h>

main( )

{

char ch;

clrscr();

printf(“enter a string”);

while(( ch=getchar( ))!=’\n’)

putchar(ch);

getch();

}