answersLogoWhite

0

Code that will print 1123581321

Updated: 12/15/2022
User Avatar

Wiki User

15y ago

Best Answer

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

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Code that will print 1123581321
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can print both statement of if and else?

Simply print the whole source-code.


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()


How do you print a .prn file using vb code?

give print then select print to file give the file name that file may prn file by


C program to print its own code?

You are referring to a quine


What is the function key to execute Qbasic program?

QBASIC operators are listed as follows.../along with some example QBASIC code... ->LOGICAL OPERATORS AND OR NOT EXAMPLE QBASIC CODE:- A=1 B=1 IF (A AND B) THEN PRINT "Result: True" ELSE PRINT "Result: False" ...output... Result: True A=1 B=2 IF (A AND B) THEN PRINT "Result: True" ELSE PRINT "Result: False" ...output... Result: False -> MATHEMATICAL OPERATORS + plus - minus * multiply / divide MOD division remainder ^ raise to the power EXAMPLE QBASIC CODE:- num1=4 num2=2 PRINT num1 + num2 PRINT num1 - num2 PRINT num1 * num2 PRINT num1 / num2 PRINT num1 MOD num2 PRINT num1 ^ num2 ...output... 6 2 8 2 0 16 -> COMPARISON OPERATORS = equals > greater than < lesser than >= greater than/or, equals <= lesser than/or, equals <> not EXAMPLE QBASIC CODE:- num1 = 6 num2 = 8 IF num1 = num2 THEN PRINT "Equal to" IF num1 > num2 THEN PRINT "Greater than" IF num1 < num2 THEN PRINT "Lesser than" IF num1 >= num2 THEN PRINT "Greater than/or, equal to" IF num1 <= num2 THEN PRINT "Lesser than/or, equal to" IF num1 <> num2 THEN PRINT "NOT equal" ...output... Lesser than Lesser than/or, equal to NOT equal

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


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.


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.


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.


Does HTML help print things?

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


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()