426 views
1 votes
1 votes
#include <stdio.h>
int main()

{

static a=10;

static b=15.56;

printf("%d %d",a,b);

}


Output -> 10    15

Why without data type information , this program is running?

1 Answer

1 votes
1 votes

"A variable declared without an explicit type name is assumed to be of type int."

Related questions

0 votes
0 votes
0 answers
1
KISHALAY DAS asked Jan 10, 2017
284 views
ANS GIVEN A=169 B=13 HOW??
3 votes
3 votes
2 answers
4
sunil sarode asked Nov 4, 2017
2,173 views
Choose the False statements:(a) The scope of a macro definition need not be the entire program(b) The scope of a macro definition extends from the point of definition to ...