Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Storing a String in C-Language

Tags: string


In this C program we will store a String in memory. The String will be given by the User.color>

input:

The String.

output:

The String will be printed on the screen which is given by the user.

CODE---->



#include
int main()
{

char str[100];
printf("Please, Enter the String : ");
gets(str);
printf("The String is: ");
puts(str);
return 0;
}


Download the C-Program file of this Program.

Don't just read, run on your pc !!!color>


RESULT :color>



Please, Enter the String : Welcome to ProgramJoy !
The String is: Welcome to ProgramJoy !

--------------------------------
Process exited after 19.75 seconds with return value 0
Press any key to continue . . .


Images for better understanding : color>



This post first appeared on ProgramJoy.blogspot.com, please read the originial post: here

Share the post

Storing a String in C-Language

×

Subscribe to Programjoy.blogspot.com

Get updates delivered right to your inbox!

Thank you for your subscription

×