#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 is a spanning Tree?
Tell me with an example the self-referential structure?
Explain the difference between malloc() and calloc() function?
What is the maximum no. of arguments that can be given in a command line in C.?
What is multidimensional arrays
What are structure types in C?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What is a substring in c?
Do you know what are the properties of union in c?
What are the 32 keywords in c?
How can you determine the maximum value that a numeric variable can hold?
What is meant by recursion?
Is there any possibility to create customized header file with c programming language?
What library is sizeof in c?
Explain the priority queues?