"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


Please Help Members By Posting Answers For Below Questions

write a program to print data of 5 five students with structures?

1834


Explain two-dimensional array.

823


what are the different storage classes in c?

874


What is difference between static and global variable in c?

761


What is the importance of c in your views?

811


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

1741


What is array of structure in c programming?

1013


code for quick sort?

1815


What are the 5 elements of structure?

817


what is the role you expect in software industry?

1879


What is the difference between #include and #include 'file' ?

815


Explain about block scope in c?

858


What is the purpose of the preprocessor directive error?

928


Why do we write return 0 in c?

784


Why should I prototype a function?

845