Search the web
Sign In
New User? Sign Up
cprogramming2 · C Programming Turning caffeine into code
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 7983 - 8015 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7983
hello! i'm trying to sort a list of objects using hash_multiset. i was wondering if anybody worked with hash_multiset and if they had any problems sorting more...
linutza_aldys
Offline Send Email
Aug 1, 2007
9:10 pm
7984
Hi, #include <curses.h> #include <stdio.h> int main() { char c; while(1) { c = (char)getch(); printf("you entered %c \n",c); } } Above gives me a seg fault ...
abhishek misra
abhishekfish...
Offline Send Email
Aug 2, 2007
8:20 am
7985
'Good code' is code that works, is bug free, and is readable and maintainable. Standards need to be followed for coding. Read more… ...
robert.steve77
Offline Send Email
Aug 3, 2007
4:42 pm
7986
... Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, photos & more....
AMEYA BAPAT
ameya_bapat2003
Offline Send Email
Aug 5, 2007
7:09 pm
7988
i writen the program below but i am a noobie in multi threading. I need to develop a develop a multithreaded M3 program in C or C++ by using POSIX...
freak_creeper21
Offline Send Email
Aug 7, 2007
8:32 pm
7990
hi, anyone got any sites for me to learn more about multithreading programming? cos i got a normal program need to change to a multithread program and i am not...
freak_creeper21
Offline Send Email
Aug 10, 2007
5:50 pm
7991
hi, i wrote a program... but there is errors encountered... but i cant seem to solve... any kind souls can help me woth the program... thanx... #include...
freak_creeper21
Offline Send Email
Aug 12, 2007
6:52 pm
7992
Could any one help me to get the hard disk serial number(not hard drive) using c/c++. Plz........... [OS? Compiler? System platform? Some basic information...
person man
personman_01
Offline Send Email
Aug 15, 2007
8:39 pm
7993
plz tell me how can i define many commands using command line arguments in a single c program. ... Get the freedom to save as many mails as you wish. Click...
Talha Bin Masood
tbmasood
Offline Send Email
Aug 17, 2007
2:17 pm
7994
Hi Folks I know this question in completely out of scope of this group. But plz help me if u know..I am at the moment involoved in developing applications in ...
Shiva Kumar
cshivain2000
Online Now Send Email
Aug 17, 2007
7:16 pm
7995
... What do you want to do? Could you please give us an example? Regards, Nico...
Nico Heinze
nico_heinze
Offline Send Email
Aug 17, 2007
7:41 pm
7996
... Cached page of 2nd site on ...
Paul Herring
Shabble
Offline Send Email
Aug 20, 2007
2:58 am
7997
hi dude i think this page could help u out ,,,,, just browse through ,,, ...
bala murugan
balamu783
Offline Send Email
Aug 20, 2007
10:00 pm
7998
I have found the driver..Thanks for all ur efforts.. Cheers Shiva...
Shiva Kumar
cshivain2000
Online Now Send Email
Aug 21, 2007
3:13 pm
8000
If any one has some thing to tell about this pl say it to me ..without that it is very dificult to write the efficient sorting algorithm.. Regards,...
yours_sarankumar
yours_sarank...
Offline Send Email
Aug 26, 2007
10:36 am
8001
... What do you want to know? In particular when it comes to sorting algorithms, there are quite a few different points to consider. There is the size of data;...
Nico Heinze
nico_heinze
Offline Send Email
Aug 26, 2007
6:58 pm
8002
Guys, Can anyone give some suggestion for the usage of the sleep and delay command in the c program . I used it and got the error as "undefined symbol sleep"...
yours_sarankumar
yours_sarank...
Offline Send Email
Aug 27, 2007
7:34 pm
8003
... Hi, you are mixing up several completely different things: 1) you are asking about sleep() and delay() functions in a C program. Not about the "sleep" and...
Nico Heinze
nico_heinze
Offline Send Email
Aug 27, 2007
9:21 pm
8004
sleep funtion is inside the haeder file dos.h there is not any pboblem with this u may have did some mistake in writing yhe programmme...
nitinbali7
Offline Send Email
Aug 28, 2007
5:59 am
8005
Take a look at this thread I found using Google http://www.daniweb.com/forums/thread16281.html It might give you some hints... ~Rick...
Rick Bowers
thefirstrepa...
Offline Send Email
Aug 29, 2007
8:13 am
8006
I have created a new website http://www.doubleblackdesign.com with which I am trying to capture and advocate software design and engineering best-practices....
husterk812
Offline Send Email
Sep 3, 2007
10:46 am
8007
code is like this ... char arr[r][c]; memset(arr,0,sizeof(arr)); ... This statement is throwing buffor overflow error. Can anybody help me out??...
humtum_kanchumanchu
humtum_kanch...
Offline Send Email
Sep 10, 2007
6:32 pm
8008
I have this piece of code that rounds numbers generated from Microsoft Perfmon log files which look like the following. I want it to skip any line that starts...
richm89
Online Now Send Email
Sep 10, 2007
6:32 pm
8009
... <snip> ... // Here's the place for the check for lines to skip! ... First I would recommend you cling either to pure C style or use C++; using C++ comments...
Nico Heinze
nico_heinze
Offline Send Email
Sep 11, 2007
9:38 am
8010
... This code likely does not cause the buffer overflow. Please show the complete code (at least including definitions of "r" and "c"), otherwise we can't help...
Nico Heinze
nico_heinze
Offline Send Email
Sep 11, 2007
9:39 am
8011
Hi, sizeof(arr) is invalid because "arr" declaration is incorrect. Declare "arr" with constants. ...
vivek
vivsonline07
Offline Send Email
Sep 11, 2007
9:40 am
8012
... not a o this is Zero 0...
mca_janaa
Offline Send Email
Sep 11, 2007
10:00 am
8013
... I'm pretty sure this is a typical typo when re-typing code into an email (or on the Yahoo! groups web site) instead of performing a copy-and-paste...
Nico Heinze
nico_heinze
Offline Send Email
Sep 11, 2007
12:21 pm
8014
Nico, Thank you so much for your help. I appreciate it. I inserted the line of code. I got the ignore the line part but how do I throw away this line and ...
Richard Maiti
richm89
Online Now Send Email
Sep 12, 2007
6:34 am
8015
... Hi Richard, here the trick with the trailing '\n' character becomes useful: Whenever you read a line of text using fgets(), the buffer may or may not...
Nico Heinze
nico_heinze
Offline Send Email
Sep 12, 2007
6:41 am
Messages 7983 - 8015 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help