ABCDCBA
ABC CBA
AB BA
A A

Answers were Sorted based on User's Feedback



ABCDCBA ABC CBA AB BA A A..

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

ABCDCBA ABC CBA AB BA A A..

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

ABCDCBA ABC CBA AB BA A A..

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 ?    2 Yes 7 No

ABCDCBA ABC CBA AB BA A A..

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

Post New Answer

More C Interview Questions

write a program to convert a expression in polish notation (postfix) to inline (normal)

0 Answers   Siemens,


write a c program to convert fahrenheit to celsius?

4 Answers   TCS,


Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


write a c program to find largest of three numbers using simple if only for one time.

1 Answers  


what is the advantage of function pointer

16 Answers   CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,






I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.

0 Answers  


What is the use of typedef in structure in c?

0 Answers  


In C, What is the #line used for?

2 Answers  


wats the diference btwen constant pointer and pointer to a constant.pls give examples.

9 Answers  


Explain what is dynamic data structure?

0 Answers  


What is the data segment that is followed by c?

0 Answers  


Write a program to show the workingof auto variable.

2 Answers   Infotech,


Categories