If youdefine something as const and then attempt to modify it, thecompiler will generate an error.You must specify the type of a const, like this:const int x = 10;In Standard C and C++, you can use a named constant in anargument list, even if the argument it fills is a pointer or a reference(i.e., you can take the address of a const).