closed by
278 views

Related questions

1 votes
1 votes
1 answer
1
Learner_jai asked Mar 13, 2017
415 views
#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?
7 votes
7 votes
3 answers
2