Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#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

What are the Advantages of using macro

1115


Can we replace the struct function in tree syntax with a union?

1238


What is string constants?

1097


How can I read in an object file and jump to locations in it?

989


What is ctrl c called?

1002


Write a program with dynamically allocation of variable.

1068


What is the general form of #line preprocessor?

949


What is const and volatile in c?

989


How can I make sure that my program is the only one accessing a file?

1192


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

2186


By using C language input a date into it and if it is right?

1021


Why c is called object oriented language?

1008


Why do we use pointer to pointer in c?

1021


Is main is user defined function?

1071


How can I dynamically allocate arrays?

1037