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
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is the difference between scanf and fscanf?
What is the purpose of the statement: strcat (S2, S1)?
Explain the priority queues?
How can I run c program?
Explain what are run-time errors?
Why is this loop always executing once?
What is the difference between Printf(..) and sprint(...) ?
Do you know the use of fflush() function?
How old is c programming language?
What does 1f stand for?
How do I use strcmp?
What is the use of define in c?
What is the significance of c program algorithms?