TheCSGuy

TheCSGuy

Member

Member since
Dec 11, 2012
Last active
Feb 1, 2013
Total activities
0

Activity feed

Recent contributions

  1. #Threads

    4e753976-5781-4234-bde0-e3b5536029b6

    Yeah. Haven't considered such a simple example while thinking.😛. My apologies. 😀

  2. #Threads

    4fa17a28-ad97-4c97-8572-9dd9a42c7c4c

    Thank you buddy. It really helped me. Your style of explaining is nice. Short but Sweet.😀

  3. #Threads

    Can a prefix expression be reverse of a postfix notation?

    Or vice versa? Sometimes? Or it's just never possible? How?

  4. #Threads

    788409a5-d788-43c7-b2ca-8ccdae2d8000

    simplycoderAs of now I wouldnt give you the answers straight away, but would encourage you to find them on your own. Let...

  5. #Threads

    Can you explain these c codes?

    1. It seems pointer work is suspicious in the following code however it prints the result successfully. Please tell me why this...

  6. #Threads

    e7e623be-dbb7-4721-90dd-986641d178c8

    demetroni am using Kaspersky internet security 2012 and before that KIS2010 and my system is last formatted on july 2010 (when i...

  7. #Threads

    4268ba32-00fc-41bd-8817-deffc02a259a

    Definitely norton. I am using it for last three years and there is no chance to complain about anything. Everything works just...

  8. #Threads

    1c07cb0e-2739-47c1-a548-fa533a3ea95b

    Cracks or fake serial keys generally expire after few days. So you need to search for new ones after few days again...

  9. #Threads

    7c487897-9fe4-4799-bdce-ad6a556ea771

    rahul695. Now an important concept, next a[0][0], this is not a value, but just a pointer to some address, and when we...

  10. #Threads

    cf8d1464-ce5d-4cfb-986f-ea71d634c909

    1. Haven't understood the first program yet. When the program calls main() for the first time from if with var value =...

  11. #Threads

    Explain the output of these short C programs

    1. main() { static int var = 4; printf("%d",var--); if(var) main(); }The output is given as 4321 2. main() { static char...