//Program which inputs a string and print it, using library function 'gets()'.
#include<stdio.h> // to load standard input output library
#include<conio.h> // to load console input output library
void main() // execution of any program starts from here
{
char str[100]; // an array of 'char' type having 100 as its size
clrscr(); // used to clear the console screen
#include<stdio.h> // to load standard input output library
#include<conio.h> // to load console input output library
void main() // execution of any program starts from here
{
char str[100]; // an array of 'char' type having 100 as its size
clrscr(); // used to clear the console screen
No comments:
Post a Comment