+ 6
Why here is the size of arr 100?
#include <stdio.h> int main() { int arr[25]; printf("%i", sizeof (arr)); return 0; }
1 Respuesta
+ 1
printf("%d",(int)sizeof(arr)); try this.
#include <stdio.h> int main() { int arr[25]; printf("%i", sizeof (arr)); return 0; }