Answer Posted / vrushali
If there is memory avaliablity in the system..
Then fisrt address of the memory allocated in returned.
Else NULL/Garbage value is returned.
| Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
a c code by using memory allocation for add ,multiply of sprase matrixes
What are the properties of union in c?
What is c definition?
What is a constant?
Should I learn c before c++?
Explain how do you list a file’s date and time?
Describe dynamic data structure in c programming language?
Explain a pre-processor and its advantages.
What are pointers? Why are they used?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain how do you convert strings to numbers in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain #pragma statements.
Why #include is used in c language?
What is difference between scanf and gets?