int main(){
  char *c = "testando"; // how i can declare an array of characters at the same time of a char pointer statement
  int *i = {1,3,5,7,9}; // and here i can't declare an array of integers at the same time of a integer pointer statement
  return 0;
}
Whats the difference?
 
     
     
    