"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 |
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
c program to print a name without using semicolon
What are the different types of errors?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
What are pointers in C?
How can I recover the file name given an open stream or file descriptor?
what is self refrential structure
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What is the difference between #include <header file> and #include “header file”?