Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
#include <stdio.h> int main() { char arr[sizeof(double)] = "c pro"; printf("%zu\n", sizeof(arr)); printf("%s\n", arr); return 0; } /* run: 8 c pro */