Should I learn c before c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is page thrashing?
How can a number be converted to a string?
What is structure and union in c?
What are signals in C?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What are the different types of linkage exist in c?
Is there any possibility to create customized header file with c programming language?
Why does not c have an exponentiation operator?
What are keywords c?
what is the role you expect in software industry?
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); } }
What is a #include preprocessor?