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 manipulate strings of multibyte characters?
What is graph in c?
Define macros.
What is difference between && and & in c?
What is string function c?
Do you have any idea about the use of "auto" keyword?
Stimulate calculator using Switch-case-default statement for two numbers
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
If you know then define #pragma?
When should a type cast be used?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
In a switch statement, what will happen if a break statement is omitted?
What would be an example of a structure analogous to structure c?
Which one would you prefer - a macro or a function?
a c code by using memory allocation for add ,multiply of sprase matrixes