#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?
Answer Posted / khaja
ramco system
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is modeling?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Why n++ execute faster than n+1 ?
What is the difference between array and linked list in c?
What are the 5 elements of structure?
If errno contains a nonzero number, is there an error?
What is identifier in c?
How can a program be made to print the name of a source file where an error occurs?
Are comments included during the compilation stage and placed in the EXE file as well?
What is function what are the types of function?
Explain how do you search data in a data file using random access method?
Why functions are used in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is bubble sort in c?
Explain the term printf() and scanf() used in c language?