first here is the code
/*errors.c*/
#include <stdio.h>
#define MAX 1000
/* this is the main function */
int main(){
prntf("hello\n" );
//const float pi = 3.0;
rturn 0;
}
when i do preprocess with "cl /E error.c" with VS complier
i got message such as:
""""""""""""""" """"""""""" """"
....
...
....
#pragma pack(pop)
#line 704 "C:\\Progra m Files\\Microsof t Visual Studio 8\\VC\\INCLUDE\
\stdio.h"
#line 706 "C:\\Progra m Files\\Microsof t Visual Studio 8\\VC\\INCLUDE\
\stdio.h"
#line 2 "C:\\DotKu\\Vis ual Studio 2005\\Projects\ \Error\\Error\
\Error.cpp"
....
....
""""""""""""""" """"""""""""""" """"
any one know what does these "# 704" means?
>>>>>>>>>>>>>>> >>>>>>>>>>>>> >
#include <stdio.h>
#define MAX 1000
/* this is the main function */
int main(){
prntf("hello\n" );
//const float pi = 3.0;
rturn 0;
}
>>>>>>>>>>>>>>> >>>>>>>>>>>>> >>
i got message such as:
""""""""""""""" """"""""""" """"
....
...
....
#pragma pack(pop)
#line 704 "C:\\Progra m Files\\Microsof t Visual Studio 8\\VC\\INCLUDE\
\stdio.h"
#line 706 "C:\\Progra m Files\\Microsof t Visual Studio 8\\VC\\INCLUDE\
\stdio.h"
#line 2 "C:\\DotKu\\Vis ual Studio 2005\\Projects\ \Error\\Error\
\Error.cpp"
....
....
""""""""""""""" """"""""""""""" """"
any one know what does these "# 704" means?
Comment