"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
In C, What is the #line used for?
What is console in c language?
which type of aspect you want from the student.
What does d mean?
Do you know what are the properties of union in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain logical errors? Compare with syntax errors.
How do c compilers work?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What are the loops in c?
how to count no of words,characters,lines in a paragraph.
What are global variables?
What are the 4 types of programming language?
Why are algorithms important in c program?
What is indirection? How many levels of pointers can you have?