Sunday, September 25, 2011

Return file name

Return file name
=============
Macro: __FILE__
Return as: String
Example:
    # include<stdio.h>
    int main()
    {
    printf("Current time: %s",__FILE__);
    return 0;
    }

From: Me 

2 comments:

Comment of this content!