Kirti is new to programming and she doesn't know how to code. Can you write a code, which would print "Hello Kirti" on the screen?
Example:
Output: Hello Kirti
Approach
C++
#include <bits/stdc++.h>using namespace std;int main(){cout << "Hello Kirti\n";return 0;}
No comments:
Post a Comment