write a program to produce the following output;
ABCDEFGFEDCBA
ABCDEF FEDCBA
ABCDE EDCBA
ABCD DCBA
ABC CBA
AB BA
A A
Answer Posted / shariq
can anyone solve this example by using string??
and is it possible ??
please answer my question ......
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are the standard predefined macros?
Explain about the constants which help in debugging?
Write a simple code fragment that will check if a number is positive or negative.
What does c mean?
What is the difference between exit() and _exit() function?
Describe static function with its usage?
How are strings stored in c?
When is a “switch” statement preferable over an “if” statement?
Why is c called c?
What is the difference between if else and switchstatement
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are variables and it what way is it different from constants?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What's the right way to use errno?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }