"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
What are the types of type specifiers?
What is the value of uninitialized variable in c?
What is array of pointers to string?
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...
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
Write a program to reverse a string.
Why do we use namespace feature?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What does void main () mean?
What are logical errors and how does it differ from syntax errors?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is equivalent to ++i+++j?
Why are all header files not declared in every c program?
How the c program is executed?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational