1,265 Posted Topics

Member Avatar for apple123456
Member Avatar for aquarian

[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 …

Member Avatar for Ezzaral
0
1K
Member Avatar for Xlphos

[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.

Member Avatar for The Dude
2
1K
Member Avatar for smith09

[QUOTE=smith09]What do you like on internet?[/QUOTE] pics of your mom, mostly.

Member Avatar for savis1
-6
823
Member Avatar for major_tom3

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. .

Member Avatar for Dani
1
191
Member Avatar for vmanes
Member Avatar for bantex07

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()??? …

Member Avatar for WaltP
-2
153
Member Avatar for geoffy0404

[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]

Member Avatar for jephthah
0
141
Member Avatar for jephthah

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: …

Member Avatar for Ancient Dragon
0
486
Member Avatar for jephthah

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 …

Member Avatar for BNF
1
1K
Member Avatar for toolbox03

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? .

Member Avatar for gerard4143
-1
136
Member Avatar for jake1496

you know.... [B][URL="http://yepyep.gibbs12.com/wp-content/uploads/2008/09/oregon-trail.jpg"]Oregon Trail[/URL][/B] rules all.

Member Avatar for davidlouis88
-8
863
Member Avatar for snkiz

[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

Member Avatar for ~s.o.s~
0
462
Member Avatar for sneekula

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.

Member Avatar for bumsfeld
2
935
Member Avatar for jcmartin

[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 …

Member Avatar for rbross
0
309
Member Avatar for Cup of Squirrel
Member Avatar for banders7

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 …

Member Avatar for Azar Mohamed
-3
4K
Member Avatar for happygeek
Member Avatar for DJMorrisInc
Member Avatar for The Dude

[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. .

Member Avatar for The Dude
0
140
Member Avatar for serkan sendur

[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.

Member Avatar for ronnieaka
0
1K
Member Avatar for Abhishek_jn

[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, …

Member Avatar for nbaztec
0
428
Member Avatar for BestJewSinceJC

[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?

Member Avatar for SgtMe
1
305
Member Avatar for cwarn23

yo, [URL="http://www.sojones.com/wordpress/wp-content/uploads/2009/10/flava-flav.jpg"]what's the time[/URL]!

Member Avatar for cwarn23
0
123
Member Avatar for ana12
Member Avatar for NicAx64

[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 ..... …

Member Avatar for dexter737
0
297
Member Avatar for R3Slick

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"

Member Avatar for Pral
0
3K
Member Avatar for modaslam

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; // …

Member Avatar for heznenkiah
0
110
Member Avatar for harshchandra

conio.h, check. alloc.h, check. goto, che ... wait, what? GOTO? is this a joke? where do you people come from?

Member Avatar for ezkonekgal
-2
2K
Member Avatar for Sabryan

i'm not seeing how there's any fundamental difference between a mercedes, ferrari, or a bentley.

Member Avatar for ih8bugz
0
210
Member Avatar for lucy1234

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 …

Member Avatar for Adak
-5
2K
Member Avatar for GMSI

[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 …

Member Avatar for Adak
0
775
Member Avatar for sujisubha

[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.

Member Avatar for monstercameron
-2
89
Member Avatar for sanz

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 …

Member Avatar for Adak
0
2K
Member Avatar for Sesshokotsu

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 …

Member Avatar for soulcandra44
0
172
Member Avatar for jephthah
Member Avatar for characteredu
0
175
Member Avatar for WASDted
Member Avatar for Nikkie80

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 …

Member Avatar for jerryvn01
0
171
Member Avatar for Dan Wallace
Member Avatar for george_82

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 …

Member Avatar for science.seeker
0
2K
Member Avatar for wonderland

[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>

Member Avatar for nateuni
0
341
Member Avatar for Aia

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 …

Member Avatar for sureronald
9
625
Member Avatar for aianne

[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 …

Member Avatar for jhamelberja@yah
-3
157
Member Avatar for vmanes

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

Member Avatar for macgurl70
1
1K
Member Avatar for clhamon

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.

Member Avatar for newtown
0
152
Member Avatar for Ramy Mahrous

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 …

Member Avatar for happygeek
3
195
Member Avatar for Chichiro

is this one of the universities that forces their students to program in Turbo C++?

Member Avatar for vaultdweller123
0
548
Member Avatar for vddmanikanta

[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] :)

Member Avatar for ihedz
0
127
Member Avatar for loly

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... .

Member Avatar for raviranjanprasa
0
2K
Member Avatar for WASDted

[CODE=text] d and d addict Banned 4 posts [/CODE] lol, that didnt take long. his profile is a hoot.

Member Avatar for happygeek
0
440

The End.