Jump to content

Input (computer science)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 103.109.92.75 (talk) at 15:06, 12 September 2023. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
  1. include<stdio.h>

int main(){

int i;

for (i=1;i<=5;i++) {

if(i==3)continue;

printf("\n HSC Exam");

}

return 0;

}

See also

References