"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.
Answers were Sorted based on User's Feedback
Answer / 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 |
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
is c language is a object oreinted language?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
How does struct work in c?
what is the mean of c languages.
whitch value return void main?
What does volatile do?
write a program in c language to print your bio-data on the screen by using functions.
char ch="{'H','I',0};printf("%s",ch);what is output
What is the meaning of ?
Who is invented by c?
What's a "sequence point"?