#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
Write a program to print fibonacci series without using recursion?
What is the right type to use for boolean values in c?
What is the process to create increment and decrement stamen in c?
Is there any demerits of using pointer?
Is using exit() the same as using return?
What is an auto variable in c?
What is structure in c explain with example?
What is function prototype?
What will the preprocessor do for a program?
Can you please compare array with pointer?
How do you define a function?
What are the advantages of Macro over function?
What are the primitive data types in c?
How do you sort filenames in a directory?
Why is c called a structured programming language?