"I LOVE MY COUNTRY"
write a c program to get "COUNTRY MY LOVE I" as the output.
Use any other programming language. It is not mandatory to
use C.
Answer Posted / alen
using namespace std;
#include <iostream>
int main()
{
cout<<"\"COUNTRY MY LOVE I\"";
return 0;
}
Is This Answer Correct ? | 10 Yes | 19 No |
Post New Answer View All Answers
write a program to print data of 5 five students with structures?
Explain two-dimensional array.
what are the different storage classes in c?
What is difference between static and global variable in c?
What is the importance of c in your views?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is array of structure in c programming?
code for quick sort?
What are the 5 elements of structure?
what is the role you expect in software industry?
What is the difference between #include and #include 'file' ?
Explain about block scope in c?
What is the purpose of the preprocessor directive error?
Why do we write return 0 in c?
Why should I prototype a function?