"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 |
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Can a void pointer point to a function?
Can a pointer point to null?
What are the types of functions in c?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
how to return 1000 variables from functio9n in c?plz give me code also
what is printf
different between overloading and overriding
what is the c.
Why cann't whole array can be passed to function as value.
Explain null pointer.