Answer Posted / mukul garg
an array is a collectiom of similar data types .an array
index always stsrt from zero if the size of array is n then
it can store n elements .
int a[5]={1,2,3,4,5};
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a structural principle?
Do you have any idea about the use of "auto" keyword?
How can you convert integers to binary or hexadecimal?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is an auto variable in c?
Is javascript written in c?
code for find determinent of amatrix
explain how do you use macro?
How is null defined in c?
What is the use of #define preprocessor in c?
Differentiate between static and dynamic modeling.
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
what is the syallabus of computer science students in group- 1?
In C programming, what command or code can be used to determine if a number of odd or even?
Explain what math functions are available for integers? For floating point?