"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
Can you think of a logic behind the game minesweeper.
Hai what is the different types of versions and their differences
What is a void pointer? When is a void pointer used?
What are the types of data structures in c?
Can you mix old-style and new-style function syntax?
Is there a built-in function in C that can be used for sorting data?
find out largest elemant of diagonalmatrix
Can an array be an Ivalue?
Write a code of a general series where the next element is the sum of last k terms.
What is "Duff's Device"?
How can I open files mentioned on the command line, and parse option flags?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is pointer & why it is used?
What are structure members?