What is the type of array index in C++ programming language? For example in such statement:
int tab[5];
To what type 5 is converted? or may
This is int if you wanta different type use sufix, for example:
int
5 // int 5u // unsigned int 5l // long 5ul // unsigned long