Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
what is difference between C and C++
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
#define d 10+10 main() { printf("%d",d*d); }
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.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What are the Advantages of using macro
What is difference between union All statement and Union?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Do character constants represent numerical values?
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
is c language is a object oreinted language?
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