This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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 */ |
NewerOlder