Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

getline function in C

#include <stdio.h>

int main()
{
  int bytes_read;
  int nbytes = 100;
  char *my_string;

  puts ("Please enter a line of text.");

  /* These 2 lines are the heart of the program. */
  my_string = (char *) malloc (nbytes + 1);
  bytes_read = getline (&my_string, &nbytes, stdin);

  if (bytes_read == -1)
    {
      puts ("ERROR!");
    }
  else
    {
      puts ("You typed:");
      puts (my_string);
    }

  return 0;
}
Source by www.crasseux.com #
 
PREVIOUS NEXT
Tagged: #getline #function #C
ADD COMMENT
Topic
Name
3+2 =