#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 / fazlur rahaman naik

The output will b : RamcoSystems

Is This Answer Correct ?    17 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1767


What is the stack in c?

724


What is difference between function overloading and operator overloading?

664


What is substring in c?

644


Explain two-dimensional array.

633






Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

671


What are the advantages of Macro over function?

1211


What is %d used for?

591


What are reserved words with a programming language?

607


What is extern variable in c with example?

544


What are the types of macro formats?

613


What are the two types of structure?

581


What is a double c?

595


4. main() { int c=- -2; printf("c=%d",c); }

1373


How many keywords are there in c?

597