What is difference between char* and int* data type to create array of pointers in C++?I understand the error with the int* example. My problem is with the char* example. My doubt is the ...
What is difference between char* and int* data type to create array of pointers in C++?But why isn't the same type of code legal with int* array of pointers.....and I have to type & befor...
What is difference between char* and int* data type to create array of pointers in C++?While creating an array of pointers for int data type the following code works: [code] int var[]...
For loop doesn't display array, HelpYour code has a lot of errors. The correct code for what you are trying to do could be: [code] #incl...
What is the use of const keyword in functions?I have seen a lot of examples where const is used instead of only declaring a constant variable........