

MCQOPTIONS
Saved Bookmarks
1. |
Will the printf() statement print the same values for any values of a? #include int main() { float a; scanf("%f", &a); printf("%f\n", a+a+a); printf("%f\n", 3*a); return 0; } |
A. | Yes |
B. | No |
Answer» B. No | |