Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Expressions Questions
Undefined behavior in C when modifying a variable twice without sequencing: What will this program print? #include
int main() { int i = 2; printf("%d, %d ", ++i, ++i); return 0; }
1
2