What is malloc return c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
where do we use volatile keyword?
Which function in C can be used to append a string to another string?
Why isn't it being handled properly?
What is const and volatile in c?
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
What does & mean in scanf?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is null pointer in c?