ONLINE COMPILERS
LIBRARY
MANUAL PAGES & DOCS
CONTACT
Latest Users' Questions
User Submitted Question!
Code contains:
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
and
int _tmain(int argc, _TCHAR* argv[])
I'm used to seeing int main (int argc, char* argv[])?
Compiler Output is:
om5g5dLS.c: In function 'int main(int, _TCHAR**)':
om5g5dLS.c:160: warning: deprecated conversion from string constant to 'char*'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x281): undefined reference to `[email protected]'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x29c): undefined reference to `[email protected]'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x35e): undefined reference to `[email protected]'
is the ":160:" a line number?
Anybody know what the fix is for the [email protected] errors - I presume I haven't properly identified the right library?
The code is not mine, it came from a website that sold our company the GPIB module I'm trying to talk through at the serial port (USB...).
TIA!
Steve
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
and
int _tmain(int argc, _TCHAR* argv[])
I'm used to seeing int main (int argc, char* argv[])?
Compiler Output is:
om5g5dLS.c: In function 'int main(int, _TCHAR**)':
om5g5dLS.c:160: warning: deprecated conversion from string constant to 'char*'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x281): undefined reference to `[email protected]'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x29c): undefined reference to `[email protected]'
/tmp/ccbkDUUM.o:om5g5dLS.c:(.text 0x35e): undefined reference to `[email protected]'
is the ":160:" a line number?
Anybody know what the fix is for the [email protected] errors - I presume I haven't properly identified the right library?
The code is not mine, it came from a website that sold our company the GPIB module I'm trying to talk through at the serial port (USB...).
TIA!
Steve
Name: sdsdsdsdsd
Name: Steve
/* substitute for TimeGetTime()
*
* trying:
*/
#include <windows.h>
#include <iostream>
int main(void)
{
std::cout << GetTickCount() << std::endl;
}