Answer Posted / suneela
it is a collection data items of different data types using
a single name
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Differentiate between calloc and malloc.
What is bubble sort technique in c?
Is r written in c?
Why calloc is better than malloc?
Differentiate between the = symbol and == symbol?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Explain pointers in c programming?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Does free set pointer to null?
What are the types of arrays in c?
Do pointers take up memory?
Explain how can you tell whether a program was compiled using c versus c++?
What are valid signatures for the Main function?
Explain how does flowchart help in writing a program?