"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.

Answers were Sorted based on User's Feedback



"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output...

Answer / 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

More C Interview Questions

In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


is c language is a object oreinted language?

5 Answers   TCS,


How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST

6 Answers   Adobe, Huawei,


How does struct work in c?

0 Answers  


what is the mean of c languages.

1 Answers   Polaris,


whitch value return void main?

11 Answers  


What does volatile do?

0 Answers  


write a program in c language to print your bio-data on the screen by using functions.

0 Answers  


char ch="{'H','I',0};printf("%s",ch);what is output

9 Answers   Accenture,


What is the meaning of ?

0 Answers  


Who is invented by c?

24 Answers   Infosys, Mphasis,


What's a "sequence point"?

3 Answers  


Categories