answersLogoWhite

0


Best Answer

type in: "ABCD" in the input line.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you print the following series in c A B B C C C D D D D?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 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.


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


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


Write a Programs in C for Fabonic Series?

I am going to assume you want a program to print out the Fibonacci series. #include <stdio.h> int main(int argc, char **argv) { if (argc < 2) { printf("Usage: %s max\n", argv[0]); return -1; } int a = 1, b = 1, c; int max = atoi(argv[1]); printf("%d %d ", a, b); while (b < max) { c = a + b; a = b; b = c; if ((b <= max)) printf("%d ", b); } printf("\n"); return 0; }


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

Start Input A Input B C=A+B Print C END