Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 171 Bytes

hello.md

File metadata and controls

14 lines (14 loc) · 171 Bytes

include "stdio.h" int main() { int j = 0; for ( ; j < 10 ; ) { if (j < 10) printf("Geeks", j++); else continue; printf(“Quiz”); } return 0; }