Question:If you want to insert a single dynamic integer value which one will you not select?
A Printf("Bar inventory:%d bottles of tonic water.", 100);
B Printf("Bar inventory:%b bottles of tonic water.", 100);
C Printf("Bar inventory:%f bottles of tonic water.", 100);
D print("Bar inventory:%d bottles of tonic water.",100);
+ AnswerA C D
+ Report