1,265 Posted Topics
Re: what is this, some kind of Furry bullshit? | |
Re: [quote]i hv tried it but i couldnt open it[/quote] you cant access IEEE and computer science journals without a subscription. i have a subscription to IEEE, but i wont post the articles because that would violate the terms of my membership, as well as this site. why do you want … | |
Re: [QUOTE]. You might want to try turning off the firewall for a couple of minutes and then see if you can observe the same behavior[/QUOTE] don't do it. it's a trap. | |
Re: [QUOTE=smith09]What do you like on internet?[/QUOTE] pics of your mom, mostly. | |
Re: i tell ya whats annoying. when i forget to enable Adblock Plus, and i keep getting that stupid big popup ad at the top of the page. but then i remember to enable Adblock and it's all groovy again. hello? hijack, what? oh, sorry. carry on. . | |
Re: [COLOR="Red"][B]Eve Was Framed[/B][/COLOR] | |
Re: oh. my. god. get rid of that "gets" statement right now. replace it with "fgets" and change your "void main" to "int main(void)" while youre at it, since that is sloppy practice. but seriously, "gets" is some effed up shiite. never ever use it. ever. and, really, "conio.h"? "clrscr()"?? getch()??? … | |
Re: [CODE]int grade = 87; char letter[6] = "FDCBAA"; int main(void) { printf("grade %d is letter '%c'\n", grade, letter[(grade>59)?grade/10-5:0]); return 0; }[/CODE] | |
so there's an argument about best practice for #include statements. many people put all the relevant #include <header.h> statements at the top of the .c source code. some people prefer to put the relevant #include statements within the .h header file that is associated with the .c source code consider: … | |
i dont normally work in the console/terminal window in my day job. so, i keep rewriting this every time i respond to someone needing help related to getting user input. im putting it here partly so i dont have to keep rewriting it. this function will get a string input … | |
Re: if you'd put CODE tags so we could READ it... oh i dunno, maybe we could see what LINE 41 is. and "bzero"? holy early-1990's, batman.... do you not like "memset" for some reason? . | |
Re: you know.... [B][URL="http://yepyep.gibbs12.com/wp-content/uploads/2008/09/oregon-trail.jpg"]Oregon Trail[/URL][/B] rules all. | |
Re: [QUOTE=snkiz;1225541]...[/quote][I]>> well they have a phone number I'd love to hear them tell that directly. it would be a fun fight[/I] SO TUFF | |
Re: humanity will be reduced to scavaging and cannibalism. roving bands of blood cults will enslave others as catamites. women will be subjected to birthing babies as a food source. | |
Re: [QUOTE=jwenting;1147562]I'll be brutally honest with you: you don't stand a chance. Most companies won't hire anyone without experience when they're over say 25 years old. Too expensive. And by the time you get your degree, you'll be 35+, at that age it's hard to get any job in IT at … | |
Re: non-standard libraries. fatal compile errors. Failure. [CODE=text]||=== mci, Debug ===| C:\sandbox\mci\mci_main.c||In function `main':| C:\sandbox\mci\mci_main.c|16|error: `MAXDIR' undeclared (first use in this function)| C:\sandbox\mci\mci_main.c|16|error: (Each undeclared identifier is reported only once| C:\sandbox\mci\mci_main.c|16|error: for each function it appears in.)| C:\sandbox\mci\mci_main.c|28|error: `MAXEXT' undeclared (first use in this function)| C:\sandbox\mci\mci_main.c|28|error: `MAXFILE' undeclared (first use in … | |
Re: [QUOTE]2.46: Borderline case. You have an interest in alternative explanations for historic events. You are certainly out of the mainstream, but it is still a free country, right?[/QUOTE] i'm happy with that. it fits my self-declared agnosticism just fine. . | |
Re: [QUOTE=serkan sendur;887509]i didnt get what you mean.[/QUOTE] well, [I]that's[/I] a surprise. FWIW, my most impressive movie of my life is: [URL="http://curvebean.com/wp-content/uploads/2009/03/uphome2.jpg"]UP[/URL] go see it. now. | |
Re: [iCODE]const[/iCODE] means the program can not modify the value [iCODE]volatile [/iCODE]means the value may be arbitrarily modified outside the program. the two are separate and not mutually exclusive. use them together, for instance, in the case of reading a hardware status register. [iCODE]const [/iCODE]prevents the value from being stomped on, … | |
Re: [QUOTE=BrytonTaylor;1215839]family guy and grey's anatomy[/QUOTE] hey if you're from pakistan, why should i trust you to tell me a damn thing about chicago? | |
Re: yo, [URL="http://www.sojones.com/wordpress/wp-content/uploads/2009/10/flava-flav.jpg"]what's the time[/URL]! | |
Re: [QUOTE=Sturm;840231]Maybe the US shouldn't be responsible for feeding people in Africa. After all, Americans pay taxes to the US government, not Africans.[/QUOTE] i admire your complete lack of social responsibility. it must be nice to be able to so neatly view the world in stark black and white terms ..... … | |
Re: if you think decoding an IP header in your intro to networking class is hard, you're in for a rough time. you need to become intimate with [URL="http://www.faqs.org/rfcs/rfc791.html"]RFC 791[/URL]. pay special attention to section 3, "specification" | |
Re: this will be considerably faster if only because it uses just one "printf" statement to display the pyramid. [code=c] #include <stdio.h> void geometric(int number, int *result) { if (number) { *result += number--; geometric(number, result); } } int main() { char stringNum[3], *pyramid, *pyr_p; int numLines, arraysize, i, printNum; // … | |
Re: conio.h, check. alloc.h, check. goto, che ... wait, what? GOTO? is this a joke? where do you people come from? | |
Re: i'm not seeing how there's any fundamental difference between a mercedes, ferrari, or a bentley. | |
Re: Adak, such a generous welcome you've given arshad and aliakseis to our humble forum. i know they've been waiting patiently for 3-1/2 years for someone like you to come along, address their needs, and see that they are comfortable. my only concern is that you've been around here since June … | |
Re: [QUOTE=Dead Alive;1166690]I am getting Troubles to open Turboc C , i am having winxp sp2 i try to open Turboc C But getting errors error is ,,,,,, The NTVDM HAS ENCOUNTERED AN ILLEGAL INSTRUCTION. CS:0000 IP:0075 OP:f0 37 05 Choose 'Close' to terminate the application. plz anyone can shortout my … | |
Re: [QUOTE=sujisubha;1206755]what are the image compression algorithms ? how to implement a new image compression algorithms ? can u give some tips to develop the code?[/QUOTE] ever heard of Google? it's pretty cool. you might like it. | |
Re: you have "no clue" ?? okay, well first thing: how is this typing tutor supposed to work? what's your plan? I'd think theres a few overall requirements.... (1) print some text to the screen that the person should type. (2) start a timer, and begin collecting typed input. (3) once … | |
Re: lemme try this. gcc on windows xp. [code]>gcc -o num2word num2word.c num2word.c:(.text+0x34): undefined reference to `clrscr' collect2: ld returned 1 exit status[/code] clrscr? at the beginning of the program? who [I]does[/I] such a thing? ok... so i remove clrscr. it compiles. i run it. [code]>num2word Enter a number : 3 … | |
| |
Re: what i'm wondering is why a marketing student would think that professional marketers hang out in an "IT Professionals Lounge" I mean, marketers dont have a technical bone in their body. they obviously wouldn't have any idea about a forum .. for ... technical .... oh. wait. i get it … | |
Re: ain't nobody here but us chickens | |
Re: a camera will not natively store an image as a GIF. it will be a JPEG or a TIFF. all of these formats can be generically referred to as "binary". your mission, if you choose to accept it, will be to understand the format (JPEG or TIFF) that your camera … | |
Re: [QUOTE=Nick Evan;1223494]Oh god, now you've posted them again... A yes or no would have been better :icon_wink: Quickly edit your post above this one. You have 30 minutes...[/QUOTE] good lord, did he really? :icon_rolleyes: what a maroon.</bugsbunny> | |
Re: Oh.... :( What a sad loss. I will miss him. I liked him very much, and benefited many times from his knowledge,. I regret my getting prickly towards him in some political discussions. He was never anything but polite and just loved the debate. I wish now I was better … | |
Re: [QUOTE]as part of a project I've got to conjure up a programme, [/QUOTE] "Conjure a program" ... Interesting choice of words. Rather viewing your exercise as needing to [i]write[/i] a program, you see it as an attempt to magically produce one [i]from the ether[/i]. And begging and wheedling has replaced … | |
Re: my work computer has an obama sticker on it. prominent. so everyone coming down the hall sees it. i know it annoys the republican whose office is caddycorner from mine. it's right in his line of sight. :D | |
Re: go get another job, right now. then (and only then) tell the president of the first one to stick his lawn mowing job right up his ass. | |
Re: yeah, i dont' like the whole thing where the rep and threads solved are hidden either. the move here has been to suppress the content and context and the accomplishments of the veteran posters, and generally make everything hard to read. i've lost interest in making serious replies in the … | |
Re: is this one of the universities that forces their students to program in Turbo C++? | |
Re: [QUOTE=ahlamjsf;859496]I've been trying to figure out how to make the code highlighted as you can see I didn't get how I could do it lol.[/QUOTE] FYI [noparse][code=c] stuff here will be syntax-highlighted [/code][/noparse] :) | |
Re: don't make the array global. declare it in main. i also think you've got a typo in the function name ... it's "pthread_create". you probably figured that out i'm sure, but just in case... . | |
Re: [CODE=text] d and d addict Banned 4 posts [/CODE] lol, that didnt take long. his profile is a hoot. |
The End.