"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 |
What is pointers in c with example?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
How many loops are there in c?
what is the use of keyword volatile??
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is malloc() function?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Is flag a keyword in c?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
nic scientist exam
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Explain how do you declare an array that will hold more than 64kb of data?