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 / khaja

ramco system

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between null pointer and void pointer.

1134


How can a program be made to print the line number where an error occurs?

1134


Are there any problems with performing mathematical operations on different variable types?

1105


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

1310


Differentiate between Macro and ordinary definition.

1467


what is reason of your company position's in india no. 1.

2411


When is the “void” keyword used in a function?

1583


How can a number be converted to a string?

1395


What is the sizeof () operator?

1134


What is the difference between pure virtual function and virtual function?

1181


What does #pragma once mean?

1207


Why do we need volatile in c?

1230


What does %2f mean in c?

1284


What is the difference between int main and void main in c?

1237


Explain what is the general form of a c program?

1145