How Can I read a file at preprocessing time

馋奶兔 提交于 2019-12-14 03:33:24

问题


I need to compile my code based on version number of the project i am working on. In short, i will read the version number from a file and enable or disable certain part of my code/.
How can i read the version number from a file at compile time in c/c++?.

I am trying to do something like this

static const unsigned int version =   
#include "version"
    ;

I am getting compiler error.


回答1:


file.c

#include <stdio.h>
static const float version = 
#include "file.h"
;

int main()
{
 printf("Version is : %f\n", version);
}

file.h

37.11

basically works



来源:https://stackoverflow.com/questions/47259465/how-can-i-read-a-file-at-preprocessing-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!