Easy
What does the following code display?
int number = 42;
int main ()
{
int number = 42/2;
printf ("%d\n", number);
return 0;
}
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
What does the following code display?
int number = 42;
int main ()
{
int number = 42/2;
printf ("%d\n", number);
return 0;
}