google.com, pub-6167773875660516, DIRECT, f08c47fec0942fa0 Write a c program to input a string and print it - 2nd puc computer science

Write a c program to input a string and print it

Write a c program to input a string and print it

#include<stdio.h>

#include<conio.h>

void main()

{

char s[20];

printf("Enter the string: ");

gets(s);

printf("Entered string is: ");

puts(s);

getch();

}

Output:

Enter the string: Kasturi                                                      

Entered string is: Kasturi
Write a c program to input a string and print it Write a c program to input a string and print it Reviewed by Vision Academy on December 12, 2021 Rating: 5

No comments:

CheckOut

Powered by Blogger.