What are the advantages of union?
No Answer is Posted For this Question
Be the First to Post Answer
Can you think of a logic behind the game minesweeper.
how to find the binary of a number?
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 maximum size of array in c?
what does ‘Bus Error’ mean?
What is variable in c example?
How to receive strings with spaces in scanf()
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
explain what is fifo?
Which is better oop or procedural?
Is malloc memset faster than calloc?
How can I copy just a portion of a string?