0
Why the output shows error
#include <stdio.h> int main() { char a[] = {'h','e','l','l','o','','w'}; printf("%d",sizeof(a)); return 0; }
1 Antwort
#include <stdio.h> int main() { char a[] = {'h','e','l','l','o','','w'}; printf("%d",sizeof(a)); return 0; }