answersLogoWhite

0

int main (void) { puts ("1123581321"); return 0; }

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What comes next 1123581321..?

The next number will be 13+21 = 34


Where to get print code in passport application?

what is print code ni passport


What are the next three terms in the Fibonacci sequence 1123581321?

34-55-89 are.


What is the use of print option in c plus plus?

C++ has no print option. The print option in your IDE allows you to print your C++ source code, thus giving you a "hard" copy of your code.


How can print both statement of if and else?

Simply print the whole source-code.


1123581321 then what number comes next?

34, then 55, then 89, then 144, 223, 376, 599, 975, 1574


Are there code lyoko posters?

yes there are you can print them at codelyoko.com


Can you print off a ID and key code for the pink kitty buildabear?

It is not possible for a person to print off an ID and key code from the pink kitty Build-a-Bear. This code only comes with the toy itself.


In jcl Which statement transmits print output to the remote location called DETROIT?

JCL is a type of communication code for computers. To get a print job to print out in Detroit, special steps must be followed and input correctly using the code.


Does HTML help print things?

No. You can print HTML pages and its code, but you cannot initiate printing with HTML itself.


What are print drivers and what do they do?

Print drivers are code segments that allow the operating system to communicate with the printer attached to the computer.


How do functions help you to reuse code in a program?

Functions hold code, which means anything that happens within a function can be "called" later on. Allowing the programmer to save time, and ensuring he doesn't have to re-write code. Example: Instead of writing "Hello" 10 times, I made a function that said print("hello") 5 times, then "Called" the function twice. def helloFiveTimes(): print("Hello") print("Hello") print("Hello") print("Hello") print("Hello") return helloFiveTimes() helloFiveTimes()