#include<stdio.h>
main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,"Ramco");
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}
Tell me the output?
Post New Answer View All Answers
What are disadvantages of C language.
find the sum of two matrices and WAP for it.
What is file in c preprocessor?
What is the explanation for prototype function in c?
Do you know the use of fflush() function?
What is .obj file in c?
Explain how can I convert a string to a number?
Which are low level languages?
How do shell structures work?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is external variable in c?
How can this be legal c?
Write the Program to reverse a string using pointers.
What does sizeof return c?
Explain what are run-time errors?