- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
Re: do you know about texmacs? it seems to be just what you're looking for. here's a site describing how to get it running on windows: [url]http://www.fmi.uni-passau.de/~seidl/texmacs/tmtour.html[/url] | |
i have a forum for a relatively small (but rapidly growing) niche of researchers worldwide. it's been really slow getting it going.. very low traffic. do you think people will use it? are low traffic forums useful? the address is << url snipped to comply with forum policy >> i … | |
Re: [QUOTE=alc6379]Because of the way it's compiled at runtime, you can make binary executables and distribute them, so people who don't have a Python installation to run a program written in it. [/QUOTE] i didn't know that. are you sure?? | |
Re: i use fluxbox. it's all i need. when i look for any software (or just about anything) i expect it to do one thing, and do it well. | |
Re: [QUOTE=PoA]To log into msn messenger with gmail account, first you have to register an account at [url]https://register.passport.net/default.srf?sl=1[/url] After reigstering, you should be able to log in. Hope it helps.[/QUOTE] if i register my gmail account here, will i get all the junk mail that hotmail users get? | |
Re: [QUOTE=jtxay]...and It runs, but the awnsers not what i'm looking for.[/QUOTE] what is the answer? i get these errors when compiling the program: [CODE]gcc -o dates dates.cpp dates.cpp: In function `int DayCalculation(int, int, int, int, int, int)': dates.cpp:67: warning: converting to `long int' from `double' /tmp/ccLb60he.o(.text+0x1b): In function `main': : … | |
Re: [QUOTE]int fgetc(FILE* stream); Returns next character from (input) stream stream, or EOF on end-of-file or error.[/QUOTE] [url]http://www.infosys.utas.edu.au/info/documentation/C/CStdLib.html[/url] | |
i've been reading a lot of the posts here to help me learn C. the problem is, much of the code is written for other compilers (i use gcc). i didn't know there was compiler-specific code until i tried to compile code from questions asked here. this seems so backwards, … | |
could the "sponsored link" boxes be made just a few pixels taller? when i'm scrolling down a page with the mouse wheel and go over a box, the page stops scrolling, and the "sponsored link" box starts scrolling. it seems pretty minor, but it's annoying when you have to dodge … | |
i'm trying to decide what my ranking system will be and am not sure what post-intervals to use. i've noticed that popular forums have larger intervals. should i wait to see how popular the site will be before i set the ranks? | |
has anyone used embedded mysql in their app? please share your experiences. i'm contemplating whether or not to do it. i may just use XML. i know it's improper, but a lot of commercial apps do it! | |
Re: this is a pretty standard first program: [CODE]#include <iostream.h> int main() { cout << "Hello, World!" << endl; return 0; }[/CODE] | |
Re: while we're on the topic of scripting languages, here's a dirty hack in python: [CODE]l = [] for i in range(1,10): if i % 2 != 0: l.append(i) for i in range(1,6)[::-1]: print "".join([str(x) for x in l[0:i]])[/CODE] | |
Re: [QUOTE=Narue]>pls can u give me some definition and information about c language Get a good book. Online tutorials have a tendency to suck ass.[/QUOTE] not from my experience. every time i buy a programming book, it ends up sitting on the shelf while i find the best documentation online. | |
Re: here's some more info on it: [url]http://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Companion/cxx_crib/member_selection.html[/url] | |
Re: i'm also a bit confused. for example, all of the following code works just fine: [CODE]#include <stdio.h> main() { char c[100]; scanf("%s", &c); printf("test %s", &c); }[/CODE] [CODE]#include <stdio.h> main() { char c[100]; scanf("%s", &c); printf("test %s", c); }[/CODE] [CODE]#include <stdio.h> main() { char c[100]; scanf("%s", c); printf("test %s", c); … | |
can C programs use iostream? i've done it in C++, and read that it can be done in C, but i keep getting compilation errors. [CODE]#include <iostream> using namespace std; main() { cout << "test"; } [/CODE] |
The End.