answersLogoWhite

0

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

Updated: 8/17/2019
User Avatar

Wiki User

15y ago

Best Answer

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;

}

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is there a c program to generate the series a a b a b c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program using while loop that generates Fabonaci series up to 200?

//to generate Fibonacci series upto a range of 200....(in C).... #include<stdio.h> main() { int a,b,c,i; a=0; b=1; printf("\n FIBONACCI SERIES .....\t"); i=1; while(i<=(200-2)) { c=a+b; printf("\t%d",c); a=b; b=c; i++; } }


Is there a 'c' code to generate the series a a b a b c?

#include <stdio.h> int main (void) { puts ("a a b a b c"); return 0; }


Create a c plus plus program to generate Fibonacci series?

#include #include void main() { clrscr() int a=0,b=1,c,i,n; coutn cout


Program to generate Fibonacci series using storage class in c plus plus?

i dn't know. haha


Program to generate a pattern a aba abcba?

#include<iostream.h> void main() { cout<<' '<<' '<<"a"<<'\n'; cout<<' '<<"a"<<"b"<<"a"<<'\n'; cout<<'a'<<'b'<<'c'<<'b'<<'a'<<"\n"; }


Write a java program to generate the Fibonacci Series using for loop?

class Fibonacci { public static void main(String args[]) { System.out.println("enter the number upto u want"); int number=Integer.parseInt(args[0]); int a=0,b=1,c=0; System.out.print(a+" "+b); for(int i=1;i<=number;i++) { c=a+b; System.out.print(c+" "); a=b; b=c; } } } the number are given to the run time where are print the series eg: 5 0 1 1 2 3 5 8 13................


Write a c program to accept a numbers and generate square root cube and exponential values?

write a c program to accept a number and generate a square root cube and exponential values


Program for sin series in c language?

find the program in c-pgms.blogspot.com


Write a 'c' program to fine a largest of three numbers?

largest of a, b, c :a > b ? a > c ? a : c : b > c ? b : c


What is XOR in a c program?

a XOR b is a^b in C language


What are the letter notes to Mr Bean animated series?

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


How do you generate a parse tree from an expression using C program?

c code for top down parser