Sunday, September 25, 2011

Checking ANSI C

Checking ANSI C
============
Macro: __STDC__
Example:
    # include<stdio.h>
    int main()
    {
    printf("Checking ANSI C: %s",__STDC__);
    return 0;
    }

From: Me

No comments:

Post a Comment

Comment of this content!