Is there any difference between int [] a and int a [] in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is a c++ class?

0 Answers  


Generally variables are stored in heap memory. When he variables are created in stack?

4 Answers   Persistent,


How the virtual functions maintain the call up?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Describe delete operator?

0 Answers  






What are the types of STL containers?

4 Answers  


What is "mutable" keyword?

2 Answers   Infosys, Teradata,


What is compilation?

1 Answers   Datamatics, TCS,


When there is a global variable and local variable with the same name, how will you access the global variable?

0 Answers  


What is the use of setfill in c++?

0 Answers  


What is the use of namespace std in C++?

0 Answers   Hexaware,


What is a forward referencing and when should it be used?

0 Answers  


Categories