"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

Differentiate fundamental data types and derived data types in C.

833


Who developed c language?

874


Write a program to swap two numbers without using a temporary variable?

872


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

940


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

1048


Why c is called object oriented language?

831


will u please send me the placement papers to my mail???????????????????

1637


Can two or more operators such as and be combined in a single line of program code?

1135


Explain what does a function declared as pascal do differently?

936


List the variables are used for writing doubly linked list program.

1831


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1007


What is wrong with this initialization?

792


What are reserved words?

875


How would you rename a function in C?

829


general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only

844