Recent questions tagged scoping-rule

1 votes
1 answer
5
#include <stdio.h int main() { static a=10; static b=15.56; printf("%d %d",a,b); }Output - 10 15Why without data type information , this program is running?
0 votes
0 answers
6
To see more, click for the full list of questions or popular tags.