what is difference between array and structure?
Answer Posted / rajprasadmaity
collection is similar data type array
array always start from 0
array size fixed
Is This Answer Correct ? | 123 Yes | 36 No |
Post New Answer View All Answers
Why can’t constant values be used to define an array’s initial size?
What is the correct code to have following output in c using nested for loop?
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(); }
Explain what is the difference between null and nul?
Is c a great language, or what?
Explain modulus operator. What are the restrictions of a modulus operator?
What is difference between union All statement and Union?
Write a program to check prime number in c programming?
Is a pointer a kind of array?
What are the advantages and disadvantages of pointers?
Explain how can I pad a string to a known length?
Do you have any idea how to compare array with pointer in c?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is storage class?