Answer Posted / vinay kumar gupta
#include <stdio.h>
#include<conio.h>
void main()
{
int i,lim;
clrscr();
printf("enter the limit \n");
scanf("%d",&lim);
for(i=1;i<=lim;i++)
{
if (i%2==0)
}
printf("even no. are= %d",i);
getch();
}
| Is This Answer Correct ? | 10 Yes | 11 No |
Post New Answer View All Answers
What is the purpose of sprintf?
Do you know what are the properties of union in c?
What is define directive?
Is c call by value?
Is printf a keyword?
What are the difference between a free-standing and a hosted environment?
Are pointers integers in c?
what do you mean by enumeration constant?
find the sum of two matrices and WAP for it.
Can a variable be both const and volatile?
Is c language still used?
What is the difference between printf and scanf )?
What are the advantage of c language?
What is a floating point in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor