Submitted Questions

  • What is L value R value and I value

    sakshi

    • Feb 1st, 2012

    L value refers to memory location and r value is known as read values.

    l values are present on the left side of = sign and r value are present on the right side of = sign

    int j;
    j=6;

    here j is l value and 6 is r value..as we cannot write 6=j,hence l value is required.