"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

What is d'n in c?

0 Answers  


what is diference between return 0 and return NULL??

3 Answers  


any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above

0 Answers  


Can main () be called recursively?

0 Answers  


n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }

7 Answers   Wipro,


const char * char * const What is the differnce between the above tow?.

6 Answers   Ramco, TCS,


write a program to print infinte number

4 Answers  


What is the use of the sizeof operator?

2 Answers  


write a c program that prints all multiples of 3between 1 and 50.

5 Answers  


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

0 Answers  


What is the difference between far and near in c?

0 Answers  


write c program without semicolon

11 Answers   MindTech, TCS, Wipro,


Categories