Computer Science, asked by srividyaavuthu2020, 6 months ago

What will be the output of following program?
void main() {
if(!printf(""))
printf("Okkk");
else
printf("Hiii");
}​

Answers

Answered by rtangade
0

Answer:

Okkk

Explanation:

Blank space also calculated as a character in printf you only print space

Similar questions