Computer Science, asked by rohitkumar5432178rd, 5 months ago

What is the output of this C code?
int X
void main()
{
printf("d". x)​

Answers

Answered by mjeystech
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