"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 / abinaya kannan

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf(" I LOVE MY COUNTRY");
getch();
}

Is This Answer Correct ?    6 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain pointers in c programming?

635


Can we declare variable anywhere in c?

535


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1138


What is wrong with this code?

695


What is the difference between the expression “++a” and “a++”?

650






What is c definition?

745


Explain how can I pad a string to a known length?

654


Can a file other than a .h file be included with #include?

686


Why we use break in c?

550


What is the difference between typedef and #define?

545


What is the best way to comment out a section of code that contains comments?

784


What is function definition in c?

586


When would you use a pointer to a function?

589


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

647


When should the register modifier be used? Does it really help?

613