CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C# Quiz #47

Casting double to int

mediumVariables

What does this code print?

📄 Code

1double d = 3.9;
2int n = (int)d;
3Console.WriteLine(n);