What is the difference between calloc() and realloc()?
Answer / nashiinformaticssolutions
calloc() allocates memory and initializes it to zero.
realloc() resizes previously allocated memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
What will be the output of x++ + ++x?
What is meant by type specifiers?
Where is c used?
What do you mean by recursion in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Who developed c language and when?
What is array of structure in c?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What does the characters “r” and “w” mean when writing programs that will make use of files?