"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

how to add numbers without using arithmetic operators.

14 Answers   TCS,


can we execute the program with the object file

1 Answers  


How can you read a directory in a C program?

0 Answers  


What are the functions to open and close file in c language?

0 Answers  


Write a program to print fibonacci series without using recursion?

0 Answers  






Why do we use c for the speed of light?

0 Answers  


What is return type in c?

0 Answers  


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


what does data structure mean?

8 Answers  


what is mallloc()?how it works?

4 Answers   Excel,


what is structuer?

4 Answers   LG Soft, Wipro,


What is the difference between union and structure in c?

0 Answers  


Categories