Thursday, May 10, 2018

lvalues and rvalues in C/C++

Following are some good resources to lvalues and rvalues in C/C++

1. Understand lvalues and rvalues in C/C++
2. geeksforgeeks.org/lvalue-and-rvalue-in-c-language/

Happy Hacking

No comments:

Post a Comment

Basic Flask web app

 from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...