Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?

7 Answers  


write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...

1 Answers   Philips,


Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?

3 Answers  


can we access one file to one directory?

1 Answers  


Is that possible to store 32768 in an int data type variable?

0 Answers  






void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


what is the maximum limit of row and column of a matrix in c programming. in linux .

4 Answers   NIIT,


What are the different types of control structures in programming?

0 Answers  


What is Memory leakage ?

2 Answers   HCL,


I have a varargs function which accepts a float parameter?

0 Answers  


What is Bitwise Operator and how it works?

1 Answers  


Write a small C program to determine whether a machine's type is little-endian or big-endian.

5 Answers   nvidia,


Categories