What are data structures in c and how to use them?
No Answer is Posted For this Question
Be the First to Post Answer
Where are the auto variables stored?
How can I find out how much free space is available on disk?
Why string is used in c?
How many types of operator or there in c?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
What is define c?
write a program to find out prime number using sieve case?
Total of how many functions are available in c?
How will you find a duplicate number in a array without negating the nos ?
What is pointers in c?
What is structure data type in c?
#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?