Quiz

Here is a quiz to test your knowledge of formatted output and input.

We'll cover the following...
Technical Quiz
1.

What will the output of the following program be?

import std.stdio;

void main(){
    writefln("%,s", 1000000);   
}
A.

1000000

B.

1,0,0,0,0,0,0

C.

1,000,000

D.

None of these


1 / 5