void main()
{
int x=100;
printf("%x",x);
}
what is the output for this with explanation
Answers
Answered by
0
Answer:
It will give error
printf("℅d", x).... this should be like this
then it will print x=100
Similar questions