What is the output of C Program?
int main() { int k=10; while(k <= 12) { printf("%d", k); k++; } return 0; }
C प्रोग्राम का आउटपुट क्या होता है?