Computer Science, asked by abhiroy22, 8 months ago

Predict output for the following code
#include<stdio.h>
int main()
int int = 6:
printf("%d",_int);
return 0;
}​

Answers

Answered by boredpotatohead
0

This code is invalid as you can't name a variable "int" as it is a reserved keyword in C

Similar questions