Header Ad

C program to read a line of text

In this tutorial, we are going to write a C Program to read a line of text from terminal C Programming with practical program code and step-by-step full complete explanation.

C program to read a line of text


C Program to read a line of text.

 
#include<stdio.h>
#include<conio.h>

void main()
{
    char line[81],character;
    int c;
    c=0;

    printf("Enter text Press<return>at end");

    do
    {
        character=getchar();
        line[c]=character;
        c++;
    }
    while(character != '\n');

    c=c-1;
    line[c]='\0';

    printf("\n%s\n",line);
}


Output

 
Enter text press<return> at end
Programming in c is interesting
Programming in c is interesting
Enter text Press <Return> at end


Post a Comment

0 Comments