#include <stdio.h> int main() { register static int n = 13; n = 14; printf("%d\n", n); }
14
Previous Question Next Question
Your comments will be displayed only after manual approval.