Answer Posted / yug
array is a sequential collection of elements of same data
types and those are stored in contiguous memory locations.
| Is This Answer Correct ? | 80 Yes | 15 No |
Post New Answer View All Answers
What is the difference between functions abs() and fabs()?
What are the features of c languages?
What is a null string in c?
What is the difference between test design and test case design?
Why c is called a middle level language?
What are the key features in c programming language?
What are data structures in c and how to use them?
#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); }
string reverse using recursion
What are integer variable, floating-point variable and character variable?
Why & is used in scanf in c?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
Explain how can I open a file so that other programs can update it at the same time?
What are loops in c?
How pointers are declared?