Open In App

A Puzzle on C/C++ R-Value Expressions

Last Updated : 29 May, 2017
Improve
Improve
Like Article
Like
Save
Share
Report

What will be the output of following program?




#include <stdio.h>
int main()
{
   int i = 0xAA;
   ~i, printf("%X\n", i);
  
   return 0;
}


Output: 0xAA

No change in i value, the emphasis is on l-value and r-value expressions. The expression ~i is an r-value, it has to be assigned to an l-value to retain the change.

Puzzle phrased by Venki. 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads