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
Explain the ternary tree?
Are comments included during the compilation stage and placed in the EXE file as well?
Can you define which header file to include at compile time?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Differentiate between declaring a variable and defining a variable?
What is typedf?
What are data types in c language?
What do you mean by recursion in c?
Write a program to find the biggest number of three numbers in c?
Explain bit masking in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is spark map function?
Explain low-order bytes.
What is integer constants?
int i=10; printf("%d %d %d", i, i=20, i);