Contact: aviboots(AT)netvision.net.il
39,890 questions
51,817 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 */