answersLogoWhite

0

#include <stdio.h>

int main (void)

{ puts ("in 0 10 010kzvcs"); return 0; }

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

WAP to print esquare 10 natural number?

yo yo as


Q2 Write a program to print even numbers between 10 and 50?

You can use int i; for (i = 10; i &lt;= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.


How do you print nos from 10-0 then only even nos are printed in a program flowchart?

10


Write a qbasic program to print the squares and cubes of first 10 natural numbers?

10 CLS 20 FOR n = 1 to 10 30 PRINT n, n^2, n^3 40 NEXT n 50 PRINT: PRINT: PRINT "Touch 'x' to go again, any other key to end." 60 INPUT a$ 70 IF a$ = "X" or a$ = "x" THEN 10 80 END


How do you write a Qbasic program to display these Numbers-0112358132134?

you do this 10 print "0112358132134" use the whole of the thing


How do you write a basic program to calculate the square and cube of members 1 to 10?

10 CLS 20 FOR N = 1 TO 10 30 PRINT N, N^2, N^3 40 NEXT N 50 PRINT: PRINT "Oooweee! That was such fun!" 60 END


Write a qbasic program to accept a no and print it multiple table?

Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end


Write the program witch show that the number is even or odd?

In BASIC: 10 INPUT X: IF X = 999 THEN STOP ELSE PRINT X; 20 IF X/2 = INT(X/2) THEN PRINT "EVEN" ELSE PRINT "ODD" 30 GOTO 10


How do make 10student name and his remarks in q-basic?

' '*** PROGRAM: Collecting student data: names/marks. ' '*** Create 2 array variables to store each students name/marks... DIM students$(10), marks$(10) '*** SCREEN ONE/Collect the data... CLS '...(CL)ear the Output (S)creen '*** print heading... PRINT "PROGRAM: Collecting each student names/marks..." PRINT '*** A FOR/NEXT loop is used to collect each individual students data... FOR eachStudentNo% = 1 TO 10 '*** Get each students names/marks 'by typing these values in from the keyboard.... PRINT eachStudentNo%; "&gt;" INPUT " Enter student name"; students$(eachStudentNo%) INPUT "Enter student marks"; marks$(eachStudentNo%) NEXT '*** SCREEN TWO: Output the collected data... CLS '...(CL)ear the Output (S)creen '*** Print headings... PRINT "Student No.", "Student Name", "Student Marks" PRINT '*** FOR/NEXT loop is used to print out the 2 array student 'name/marks' values... FOR eachStudentNo% = 1 TO 10 '*** print out each students 'number/name/mark' values... PRINT eachStudentNo%, PRINT students$(eachStudentNo%), PRINT marks$(eachStudentNo%) NEXT END '...END of program/halt program code execution


Write a program in BASIC to find the sum of the series s equals 2 plus 4 plus . plus 100?

10 print "That is not a question." 20 print "That is a command." 30 end


Where can you find a python script for a nearly infinite loop that looks like water?

You can find such scripts on various websites. Considering that you want a script that print some ASCII image that looks like flowing water, then I will quickly write one for you. Script:import timewhile True:___print "1 " * 10; print " 1 " * 10; print " 1 " * 10; time.sleep(0.75); print " 1 " * 10; print " 1 " * 10; print " 1 " * 10; time.sleep(0.75); print "1 " * 10; print " 1 " * 10; print " 1 " * 10; time.sleep(0.75); print " 1 " * 10; print " 1 " * 10; print " 1 " * 10; time.sleep(0.75);Note (Replace underscore (___) with indentation.


How do you write a program to print 1-47-10..........-40?

#include&lt;stdio.h&gt; int main(void) { printf ("1-47-10..........-40\n"); return 0; }