ABCDCBA
ABC CBA
AB BA
A A
Answers were Sorted based on User's Feedback
Answer / aarti
a.b.c=c.b.a this statement should be inside any program ang
this should give real meaning
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / notgate779
http://allinterview.com/showanswers/89174.html
<a
href="http://allinterview.com/showanswers/89174.html">click</a>
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / mathu
import java.io.*;
class MainAlpha{
public static void main(String args[])
{
for(int i=65;i<=67;i++){
System.out.printf("%c",i);
System.out.printf("\t");
}
System.out.print("");
for(int j=66;j>=65;j--){
System.out.printf("%c",j);
System.out.printf("\t");
}
System.out.println("");
for(int i=65;i<=66;i++){
System.out.printf("%c",i);
System.out.printf("\t");
}
System.out.print("\t");
for(int j=66;j>=65;j--){
System.out.printf("%c",j);
System.out.printf("\t");
}
System.out.println("");
for(int i=65;i<=65;i++){
System.out.printf("%c",i);
System.out.printf("\t");
}
System.out.print("\t");
System.out.print("\t");
System.out.print("\t");
for(int j=65;j>=65;j--){
System.out.printf("%c",j);
System.out.printf("\t");
}
}
}
| Is This Answer Correct ? | 3 Yes | 7 No |
Answer / vignesh1988i
good question it is :
#include<stdio.h>
#include<conio.h>
void main()
{
int m;
char n,o;
printf("enter the no. of lines :");
scanf("%d",&m);
o='A';
for(int i=0;i<m;i++)
{
n='A';
for(int j=0;j<(m-i);j++)
printf("%c",n++);
for(j=0;j<i;j++)
printf(" ");
for(j=0;j<(m-(i+1));j++)
{
if(j==0||j==1)
{
n='A'+(m-2);
printf("%c",n);
}
else
printf("%c",--n);
}
printf("\n");
}
getch();
}
thnak u
| Is This Answer Correct ? | 10 Yes | 16 No |
Why is not a pointer null after calling free?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What are the types of unary operators?
Explain how can I pad a string to a known length?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
how to find the size of the data type like int,float without using the sizeof operator?
which type of question asked from c / c++ in interview.
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
Explain how can a program be made to print the name of a source file where an error occurs?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the difference between malloc() and realloc()?
What should malloc(0) do?