all self learners Students who would want gain more knowledge in less time, so come on s6schools.
Posted On
By
1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> int main() { int i=1; while(i<=3){ printf("Hello"); printf("\n"); i=i++; } } //output: - // three times print Hello.