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

what is difference between C and C++

4 Answers  


How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

0 Answers  


#define d 10+10 main() { printf("%d",d*d); }

6 Answers  


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

0 Answers   Aspiring Minds,


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

0 Answers  


What are the Advantages of using macro

0 Answers  


What is difference between union All statement and Union?

0 Answers  


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

0 Answers  


Do character constants represent numerical values?

0 Answers  


write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4

1 Answers  


is c language is a object oreinted language?

5 Answers   TCS,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


Categories