What is the output of this C code?
int X
void main()
{
printf("d". x)
Answers
Answered by
1
Answer:
it will throw an error
Explanation:
int X;
void main()
{
printf("d", x);
}
this code will generate a random output like 18669355,etc
Similar questions