Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program for even numbers?

Answers were Sorted based on User's Feedback



write a program for even numbers?..

Answer / vin

yes

Is This Answer Correct ?    0 Yes 0 No

write a program for even numbers?..

Answer / sadakrishnaj

to print numbers which are even from 1 to 100
#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
int a;
printf("enter the no");
scanf("%d",&a);
if(a%2==0)
{
printf("no is even");
}
else
{
printf("odd no");
}
getch();
}

Is This Answer Correct ?    0 Yes 0 No

write a program for even numbers?..

Answer / maryam

q1 yes q2 yes q3 yes q4 no q5 no q6 yes q7 no q8 no q9 no q10 no

Is This Answer Correct ?    0 Yes 0 No

write a program for even numbers?..

Answer / sumon

#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
if(a%2==0)
{
printf("a is even number");
else
printf("a is odd number");
}
return o;
}

Is This Answer Correct ?    0 Yes 0 No

write a program for even numbers?..

Answer / 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

write a program for even numbers?..

Answer / kamal

* read a number … */

#include <stdio.h>

int main (void) {

int num; /* input number */

int rem; /* remainder …*/

/* get number from user */

printf(“Please enter a number: ”);

scanf(“%d”, &num);

/* calculate remainder … */

rem = num % 2;

if (rem == 0) {

printf(“even\n”);

} else {

printf(“odd\n”);

}

/* terminate program */

return 0;

}

Is This Answer Correct ?    4 Yes 6 No

write a program for even numbers?..

Answer / shanmuganathanbalasubramanian

what is the difference between in if (i=2)$(i==2)

Is This Answer Correct ?    3 Yes 11 No

write a program for even numbers?..

Answer / gich

#include<stdio.h>
main()
{
int x;
for (x=10;x>=2;x-2;)
{
printf("x is %d\n"x);
{
}

Is This Answer Correct ?    1 Yes 12 No

write a program for even numbers?..

Answer / joe

#include<stdio.h>
//#include<conio.h>

main()
{
//clrscr();
int a;
printf("\nenter the no\n");
scanf("%d",&a);
evenNum(&a);

}
evenNum(int *i)
{
if(*i <0)
{
printf("\nEnter correct number :\n");
}
else if(*i%2==0)
{
printf("no is even");
}
else
{
printf("odd no");
}
getch();
main();
}

Is This Answer Correct ?    6 Yes 18 No

Post New Answer

More C Interview Questions

IS STRUCTURES CAN BE USED WITHIN AN ARRAY?

7 Answers   Caritor,


What is pointer to pointer in c language?

0 Answers  


Write a program to swap two numbers without using third variable in c?

0 Answers  


a program that can input number of records and can view it again the record

0 Answers   Accenture,


How to establish connection with oracle database software from c language?

0 Answers  


write an algorithm to display a square matrix.

0 Answers  


hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .

0 Answers   Aegis, CDAC, Infosys,


Explain the advantages of using macro in c language?

0 Answers  


Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort

3 Answers  


what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel

1 Answers   V2 Solutions,


Explain low-order bytes.

0 Answers  


What is putchar() function?

0 Answers  


Categories