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
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Explain what does the function toupper() do?
What are the advantages of c preprocessor?
What are the advantages and disadvantages of pointers?
What is c programing language?
Write a program of advanced Fibonacci series.
How can I avoid the abort, retry, fail messages?
What is pass by reference in functions?
How will you delete a node in DLL?
What is page thrashing?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Explain what does a function declared as pascal do differently?
Why string is used in c?
Explain the binary height balanced tree?
How many types of arrays are there in c?