【名词&注释】
解释程序(interpreter)、编译程序(compiler)、剪贴板(clipboard)、键盘输入(keyboard input)、输出设备(output device)、可执行程序(executable program)、分配程序(allocator)、标准库函数、可执行的(executable)、汇编程序(assembler)
[判断题]若有定义和语句:int a;char c;float f;scanf("%d,%c,%f",&a,&c,&f);若通过键盘输入:10,A,12.5,则a=10,c=‘A’,f=12.5。( )