"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 / alen
using namespace std;
#include <iostream>
int main()
{
cout<<"\"COUNTRY MY LOVE I\"";
return 0;
}
| Is This Answer Correct ? | 10 Yes | 19 No |
Post New Answer View All Answers
How do you generate random numbers in C?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is include directive in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is #include stdio h and #include conio h?
Write a progarm to find the length of string using switch case?
How can I read data from data files with particular formats?
What is the process to generate random numbers in c programming language?
Is javascript written in c?
Can you add pointers together? Why would you?
Can you mix old-style and new-style function syntax?
What is the correct code to have following output in c using nested for loop?
Can a pointer be null?
How to write c functions that modify head pointer of a linked list?