"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
ATM machine and railway reservation class/object diagram
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What are the Advantages of using macro
Explain output of printf("Hello World"-'A'+'B'); ?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is a file descriptor in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Wt are the Buses in C Language
What's the right way to use errno?
How many bytes are occupied by near, far and huge pointers (dos)?
What is a volatile keyword in c?
What are the advantage of c language?
What is void main ()?
Explain the Difference between the New and Malloc keyword.
write a program to print data of 5 five students with structures?