answersLogoWhite

0

type in: "ABCD" in the input line.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a C program to print the following series 112 122 . 1n2?

write a program to print the series 1/12+1/22+.........+1/n2 ?


What letter fits in the following series a b c d?

e


C program to find greatest of three numbers?

# include<stdio.h> main() { int a,b,c; print f("enter the values of a,b,c"); scan f("%d%d%d",&a,&b,&c); if((a>b)&&(a>c)) print f("Greatest value is a =%d",a); else if((b>a)&&(b>c)) print f("Greatest value is b=%d",b); else print f("Greatest value is c=%d",c); }


Is there a c program to generate the series a a b a b c?

You need to be more specific in what you are asking. For example, the following meets your requirements: int main() { printf("a a b a b c\n"); return 0; }


What should be the next letter in the following series a z e b i y o?

The answer is C.


What is the next letter in the following series A Z E B you Y O?

C


What should be the next letter in the following series A Z E. B I Y O?

The answer is C.


Programme in basic to sum of first 10 numbers?

If you wish to sum every number as you go along:10 LET A=120 PRINT A30 LET B=A+140 PRINT A+B50 LET C=B+160 PRINT A+B+C70 LET D=C+180 PRINT A+B+C+D90 LET E=D+1100 PRINT A+B+C+D+E110 LET F=E+1120 PRINT A+B+C+D+E+F130 LET G=F+1140 PRINT A+B+C+D+E+F+G150 LET H=G+1160 PRINT A+B+C+D+E+F+G+H170 LET I=H+1180 PRINT A+B+C+D+E+F+G+H+I180 LET J=I+1190 PRINT A+B+C+D+E+F+G+H+I+J200 STOP


How do you draw a flowchart to get the sum of two numbers?

Starts Input a,b Result=(a-b)*(a-b) Print"square of difference=",result


Write a C program Fibonacci using normal loops and conditional statements?

to print the Fibonacci series until 100 you can take the input in d to make it run for whatever value you want void main(){ int a,b,c,d; a=0; b=1; c=1; d=100; while(c<d) { printf("%d\n",c); c=a+b; a=b; b=c; } }


What are the letter notes to Mr Bean animated series?

C b a c d c b g a b b c


Pseudocode for subtraction of two binary numbers?

start read a read b c=a-b print c end