#include <stdio.h> int main() { int forth = 4, fifth = 5; #ifdef next forth = 5; fifth = 4; #endif printf("%d, %d", forth, fifth); }
4, 5
Previous Question Next Question
Your comments will be displayed only after manual approval.