can please someone teach me how to create this program using
while statement.. this is the output should look like
0
2
4
6
8
10
-thanks.. :) need it asap...
Answer Posted / rameshwari
#include<stdio.h>
#include<conio.h>
void main()
{
int i=0;
while(i<=9)
{
printf("%d", i);
i=i+2;
}
getch();
}
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
a program that can input number of records and can view it again the record
What is LINKED LIST? How can you access the last element in a linked list?
Who developed c language?
What is linear search?
i want to know the procedure of qualcomm for getting a job through offcampus
in iso what are the common technological language?
What is s or c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Which of these functions is safer to use : fgets(), gets()? Why?
Is c# a good language?
what are non standard function in c
What is a function in c?
What is a pointer and how it is initialized?
What are the types of data files?
explain how do you use macro?