#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
What are the Advantages of using macro
Can we replace the struct function in tree syntax with a union?
What is string constants?
How can I read in an object file and jump to locations in it?
What is ctrl c called?
Write a program with dynamically allocation of variable.
What is the general form of #line preprocessor?
What is const and volatile in c?
How can I make sure that my program is the only one accessing a file?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
By using C language input a date into it and if it is right?
Why c is called object oriented language?
Why do we use pointer to pointer in c?
Is main is user defined function?
How can I dynamically allocate arrays?