#include <stdio.h> void function(); int main() { static int q = 25; function(); } void function() { static int q; printf("%d", q); }
0
Previous Question Next Question
Your comments will be displayed only after manual approval.