C Programming Part I
What is output by the following code? char c = 'A'; float f = 1.7f; double d = 3.9; printf("char: %i float: %i double: %i\n", sizeof(c), sizeof(f), sizeof(d));
What is output by the following code? char c = 'A'; float f = 1.7f; double d = 3.9; printf("char: %i float: %i double: %i\n", sizeof(c), sizeof(f), sizeof(d));