C #undef


The undefine a macro helps to cancel its definition. This is done with the #undef directive.


Syntax:

#undefine token

Example:

#include <stdio.h>
#define PI 3.14
#undef PI
void main() {
	printf("Print the pi value :");
    printf("%d",PI);
}

 

error: ‘PI’ undeclared




OnlineTpoint is a website that is meant to offer basic knowledge, practice and learning materials. Though all the examples have been tested and verified, we cannot ensure the correctness or completeness of all the information on our website. All contents published on this website are subject to copyright and are owned by OnlineTpoint. By using this website, you agree that you have read and understood our Terms of Use, Cookie Policy and Privacy Policy.