Practice with real exam questions. Get instant feedback with detailed explanations and track your performance.
Click an option to answer. Your score is tracked above.
#include <stdio.h>
int main()
{
int x = 10;
printf("%d %d", x++, ++x);
return 0;
}console.log(parseInt("10.5") + parseInt("5.7") + "2");