Search:

Type: Posts; User: vart

Search: Search took 0.13 seconds.

  1. Replies
    11
    Views
    1,094

    num++; could be translated into num=...

    num++;

    could be translated into


    num= num+1;

    there is no problem with num+1 part. There is problem with assigning result value back to the variable which could not be changed
  2. Replies
    11
    Views
    1,094

    you never print pnum+4 use following code and...

    you never print pnum+4
    use following code and see what it actually point to



    #include<stdio.h>

    int main()
    {
Results 1 to 2 of 2