Answer Posted / virender kumar
An array is a collection of similar data type, that can store the value of an object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Why is it important to memset a variable, immediately after allocating memory to it ?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the usage of the pointer in c?
Why void is used in c?
Explain how does free() know explain how much memory to release?
What is the purpose of clrscr () printf () and getch ()?
What is the use of typedef in structure in c?
Explain how can a program be made to print the name of a source file where an error occurs?
Why calloc is better than malloc?
Why does the call char scanf work?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Do you know pointer in c?
Why does everyone say not to use gets?
How do you define a string?