"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 / alen
using namespace std;
#include <iostream>
int main()
{
cout<<"\"COUNTRY MY LOVE I\"";
return 0;
}
| Is This Answer Correct ? | 10 Yes | 19 No |
Post New Answer View All Answers
Why c language?
What is binary tree in c?
What is #include cctype?
What is static memory allocation? Explain
what is reason of your company position's in india no. 1.
Why do we need a structure?
FILE PROGRAMMING
Are negative numbers true in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What does *p++ do?
Is there any demerits of using pointer?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Explain how do you view the path?
Are pointers integer?
Can a variable be both static and volatile in c?