Search This Blog

Friday, December 30, 2011

Use of Get() function in c

/* gets example */
#include 

int main()
{
  char string [256];
  printf ("Insert your full address: ");
  gets (string);
  printf ("Your address is: %s\n",string);
  return 0;
}

No comments:

Post a Comment

Thank you