Jared Burrows Blog
Software Development and Course Notes
Pages
(Move to ...)
Home
Burrows Apps
Course Notes
▼
Showing posts with label
C
.
Show all posts
Showing posts with label
C
.
Show all posts
Saturday, July 19, 2014
How to use the same C++ code for Android and iOS?
›
Best tutorial on using C++ code with iOS and Android Please read this wonderful StackOverflow post: http://stackoverflow.com/a/...
2 comments:
Sunday, July 13, 2014
10 Rules for writing portable software!
›
I recently came across a good article about writing portable software with C/C++. Brian's 10 rules for how to write cross platfor...
Friday, December 16, 2011
How to use libcurl in C/C++
›
libcurl Newer languages such as Java and newer scripting languages such as Python come with good libraries to download files and do onlin...
Friday, September 23, 2011
How to fix 'for' loop initial declarations are only allowed in C99 mode in Eclipse
›
For loop problem Once again, programming in C using Eclipse in Linux is great, however when using "for" loops I get this error: ...
3 comments:
How to fix undefined reference to `sqrt' in Eclipse
›
Math.h problem Programming in C using Eclipse in Linux is great, however when i added variables that were doubles into the "sqrt...
4 comments:
Monday, May 30, 2011
How to write HelloWorld in C?
›
HelloWorld.c #include <stdio.h> int main() { printf("Hello world!\n"); }
›
Home
View web version