Predict output for the following code
#include<stdio.h>
int main()
int int = 6:
printf("%d",_int);
return 0;
}
Answers
Answered by
0
This code is invalid as you can't name a variable "int" as it is a reserved keyword in C
Similar questions