+ 1
Why this program wont give output if input is more than 8 characters?
2 Réponses
+ 2
Because size of int is 4, size of char is 2 so the size of char array is => 4*2 = 8.
0
Thank you Julien Quentin! I fixed the program as you adviced and now it works fine!