#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 #include stdio h and #include conio h?
What are header files in c?
Can we add pointers together?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is structure in c explain with example?
Explain what is the difference between functions abs() and fabs()?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
What are the primitive data types in c?
Why isn't it being handled properly?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
using only #include
Explain pointer. What are function pointers in C?
Differentiate Source Codes from Object Codes
What is oops c?