Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

This little program supposed to print the number of new lines in the input , but it doesnt print anything.

0 votes
asked Mar 6, 2018 by zekageri
#include <stdio.h>

/* a bemenő szöveg sorainak számlálása */
main ( )
{
   int c, nl;

   nl = 0;
   while ((c = getchar( )) != EOF)
      if (c == '\n')
         ++nl;
   printf("%d\n", nl);
}

1 Answer

0 votes
answered Mar 7, 2018 by Misagh
You have int c which is not correct. You should have char c. Also no where in your program you are inputting c. you should ask the user to type something or input it from a file.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...