- 1
#include<stdio.h> int main(){ int a=5; static int b=a; printf("%d %d",a,b); return 0; }
it's in C language it's showing compilation error why?
6 Respostas
0
that's c++
0
but why should it's how compilation error?
0
Hello
0
you should write prinf("%d %d", &a, &b);
- 1
700030