Answer Posted / parmjeet kumar
#include<stdio.h>
#include<conio.h>
void main()
{
char a[50];
printf("enter the string:");
scanf("%s",&a);
printf("%s",a);
getch();
}
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How can I do graphics in c?
Explain how does flowchart help in writing a program?
What is the difference between NULL and NUL?
How many types of sorting are there in c?
What is dynamic dispatch in c++?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
C language questions for civil engineering
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
How can I delete a file?
Can the “if” function be used in comparing strings?
Explain the difference between call by value and call by reference in c language?
What is n in c?
How can I call fortran?
Explain what are linked list?