This problem sheet was created by Sir Narasimhan T, Assistant Professor, IT Department LBS College of Engineering, Kasaragod. The softcopy in .pdf is available here . There is something much more in the file. 1) Predict the output of the following code snippets. Clearly specify the reasons for your answer. a) main() { float a = 0.7; printf("%d %d", sizeof(a),sizeof(0.7)); } b) main() { float expr = 2.0; switch (expr) { case 1.0: printf("One\n"); case 2.0: printf("Two\n"); default: printf("Default\n"); } } 2) A character is entered through the keyboard, write a program to determine whether the character entered is a capital letter, a small case letter, a digit or a special symbol. The following table shows t...