I want to know how this code works,will you please explain me?
Code:
<#include<stdio.h>
main()
{
int c;
printf("Enter character(CONTROL-Z to end):");
c=getchar();
if(c!=EOF)
printf("End of file not encountered!");
}
Comment