"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 ?    9 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how can use subset in c program and give more example

1489


How to explain the final year project as a fresher please answer with sample project

459


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

1832


What language is c written?

568


What are the rules for identifiers in c?

579






An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

641


What does sizeof function do?

606


Can we assign string to char pointer?

578


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

770


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

754


What are the uses of a pointer?

672


How many types of errors are there in c language? Explain

560


Is it possible to use curly brackets ({}) to enclose single line code in c program?

782


Can we compile a program without main() function?

627


What does %p mean c?

617