Home / Questions / What is a NULL statement?
Explanatory Question

What is a NULL statement?

👁 1,303 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

A null statement is no executable statements such as ; (semicolon).

Eg: int count = 0; 
while( ++count<=10 ) ;


Above does nothing 10 times.