#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?
Post New Answer View All Answers
How can you increase the allowable number of simultaneously open files?
Why & is used in c?
How do you sort filenames in a directory?
What is stack in c?
What is wrong with this program statement?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What are the types of unary operators?
What is non linear data structure in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Explain #pragma statements.
What is the difference between #include
What is the use of parallelize in spark?
What is null pointer constant?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
what is use of malloc and calloc?