Answer Posted / sreeshma
#include<stdio.h>
main()
{
int i,n;
printf("enter a range of numbers");
scanf("%d",&n);
for(i=0;i<=n;i+2)
{
printf("%d",i);
}
break;
getch();
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
How can I change their mode to binary?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is c a great language, or what?
How many main () function we can have in a project?
What does *p++ do?
What are linker error?
How the c program is executed?
Is there any possibility to create customized header file with c programming language?
What does 2n 4c mean?
Write a simple code fragment that will check if a number is positive or negative.
Do you know pointer in c?
What extern c means?
What is "Hungarian Notation"?
why do some people write if(0 == x) instead of if(x == 0)?