What is the default size allocated for array in the
statement if size not specified
" int a[] "

Answer Posted / karthik

BUT int a[]={0};
this will work

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a class oop?

588


How do you use inheritance in unity?

584


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2157


Why do we use inheritance?

628


What is abstraction in oops?

578






why reinterpret cast is considered dangerous?

1896


What makes a language oop?

591


What are properties in oop?

603


What is an advantage of polymorphism?

587


Why it is called runtime polymorphism?

573


What is interface? When and where is it used?

1659


What is multilevel inheritance explain with example?

621


What is the difference between encapsulation and polymorphism?

584


Whats is abstraction in oops?

585


How to improve object oriented design skills?

565