I am reading a code of my friend an I see this:
#include #include void main() { char string1[125], string2 [10]; in
That is called a semicolon. In programming standards, the ; signifies an end of statement, or in this case that it is a null statement. It is effectively a non operation in the body of the while loop, so it is not actually doing anything.
;