I am born with potential,
I am born with goodness,
I am born with ideas and dreams,
I am born with greatness,
I have wings,
I have two wings,
I am meant for creativity because I have wings,
I will fly, I will fly, I will fly !!! -- DR. A. P. J. Abdul Kalam
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