Contact: aviboots(AT)netvision.net.il
41,255 questions
53,764 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 */