Skip to content

Instantly share code, notes, and snippets.

View bhargavkulk's full-sized avatar
🎨

Bhargav Kulkarni bhargavkulk

🎨
View GitHub Profile
#include<iostream.h>
#include<conio.h>
int const p = 5;// both are the same
const int q = 6;// ^
int r = 7;
int main() {
//////////////////////////////////////////////
/* pointer to const */