Answer Posted / manish sharma
Array is a collection of similar data type,
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is meant by realloc()?
What is uint8 in c?
What does != Mean in c?
What is the use of the function in c?
Is main a keyword in c?
How can you find the exact size of a data type in c?
Why do we use int main?
#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); }
Tell me about low level programming languages.
What is d scanf?
What are the properties of union in c?
what is the role you expect in software industry?
Under what circumstances does a name clash occur?
Difference between MAC vs. IP Addressing
find out largest elemant of diagonalmatrix