A
Q. %f access specifier is used for ________.
- Correct Answer - Option(B)
- Views: 4
- Filed under category C Programming
- Hashtags:
A
Example:
#include <stdio.h>
int main() {
float num = 12.345;
printf("The number is: %f
", num);
return 0;
}
Output:
The number is: 12.345000
Breakdown of Options:
Correct Answer:
✅ (B) Floating type
You must be Logged in to update hint/solution
Be the first to start discuss.
Discusssion
Login to discuss.