Dear Punnet, Try a bit hard urself it will improve ur skill only it is not so very hard thing to do. Check the K&R for reference. Good luck
Hi All, I have created a interface class for threads using Pthreads for Linux plateform. In the class i have kept the run function as pure...
There was once a king who is supposed to reward one of his knights. However, the king has reservations. So instead of rewarding him a chest of...
Dear Muneeb, Numbers can be represent in many ways like: Decimal Binary Octal Hexadecimal The number you mentioned is in the...
I am having some doubts- who called main() in a 'C' programme? Main() is a function (Considered as Entry point to program) from that we can...
One more Difference.. Memory allocated using Malloc can be resized using realloc.But It,s not possible in case of new.
If the parameters are being passed by reference then the modifications done will be reflected in the original parameters also.And If they being...
iostream is a header file which is used for input/output in the C++ programming language. It is part of the C++ standard library. The name stands...
The C standard library is a now-standardized collection of header files and library routines used to implement common operations, such as...
use sleep function where u want the delay. it provides the delay in miliseconds when used. For more information refer link:...
I agree...... And I appreciate ur immediate concern. Forgot the padding issue...Excatly the size will be 8 due to insertion of extra bytes by...
Let me explain you by an example.. struct test { int temp1; char temp2; } test_1; union test { int temp1; char temp2; } test_2;...
Separate names with a comma.