How do I use void main?
No Answer is Posted For this Question
Be the First to Post Answer
Explain zero based addressing.
What is the difference b/w Structure & Class?
What is the function of multilevel pointer in c?
write a program to display the frequency of each element in a given array in c language
i have a written test in tomorrow
Explain how can type-insensitive macros be created?
Which function in C can be used to append a string to another string?
Write a program to find minimum between three no.s whithout using comparison operator.
what is the benefit of c30
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
an algorithem for the implementation of circular doubly linked list
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }