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 8006 - 8036 of 8312   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
8016
I'm attempting to locate a form builder , dialog editor or similar that is an integral part of a C/C++ IDE . Preferably one that has MingW32/64 capability , ...
gedcda72
Offline
Sep 15, 2007
5:17 am
8017
... this is the actual code... ... u32 r,c; astring arr[r][c]; memset(arr,0,sizeof(arr)); ... replaceing memset statement with astring arr[r][c]={0}; is...
humtum_kanchumanchu
humtum_kanch...
Offline Send Email
Sep 21, 2007
9:22 pm
8018
Hi guy, I have any problem for using template class. I would like to define "int" for using in template class only but I still create instance of template...
n_siri_9
Offline Send Email
Sep 21, 2007
9:22 pm
8019
... take arr[10][10] its even then it will throw same error(buffor Overflow) i solved this prolem by initilizing array with 0 i replaced statement...
humtum_kanchumanchu
humtum_kanch...
Offline Send Email
Sep 21, 2007
9:22 pm
8020
<snip> ... It cannot. The declarations for "r" and "c" given above look as if these are local variables in some function (main()?). The ANSI C standard ...
Nico Heinze
nico_heinze
Offline Send Email
Sep 21, 2007
11:56 pm
8022
Hi, I have encountered a problem in a C++ student project and am looking for a professional C++ programmer who can debug the code and optimize it with regard...
n_zabehi
Offline Send Email
Sep 30, 2007
12:56 pm
8023
Hi how to find the number of days between two days using C language? Please tell me the functions and an example program if possible. thank u. Regards, ...
Mallikarjuna Ganipi
mallik.arjuna
Offline Send Email
Sep 30, 2007
7:03 pm
8024
... "difftime()" is a function which takes two time_t values as its arguments and returns the difference in seconds. Divide this number by 86400 and discard...
Nico Heinze
nico_heinze
Offline Send Email
Oct 1, 2007
6:54 pm
8025
please give me a code of priority preemptive scheduling...asking for the number of processes, entering bursting time, priority and processing the waiting time...
Mac Froilan
naliorf_41
Online Now Send Email
Oct 11, 2007
9:09 pm
8026
Hello, I am Mikey Pizano from Yatesville, Pennsylvania. I am currently learning C++ from www.cplusplus.com...
Mikey Pizano
mikey_pizano
Online Now Send Email
Oct 12, 2007
4:25 am
8027
Mac Froilan <naliorf_41@...> wrote: please give me a code of priority preemptive scheduling...asking for the number of...
mac froilan sison
naliorf_41
Online Now Send Email
Oct 13, 2007
8:08 am
8028
Guys, I read this article and it's really great. http://overcomingdepressionandstress.blogspot.com/ keep on reading.. thanks.....
klint_madarcos
Online Now Send Email
Oct 15, 2007
2:11 pm
8029
Hi folks I need to execute a function, say every one minute or 2 minutes. I have already written the function which plots points on the screen at random. My ...
Shiva Kumar
cshivain2000
Offline Send Email
Oct 17, 2007
7:05 am
8030
... Hi Shiva, no, there's no built-in C/C++ function for a timer. But Unix offers a few things in its standard libraries. Please look up signal(), sleep(), and...
Nico Heinze
nico_heinze
Offline Send Email
Oct 17, 2007
7:54 pm
8031
Well, I know something in windows environment, but I'm not sure if it will work under Linux. #include<dos.h> OR #include<windows.h> Sleep( n ); n is a number...
AbdelRhman ElGammal
abdelrhman_e
Offline Send Email
Oct 17, 2007
7:58 pm
8032
hi all Project : DoubleS (Super Server) Paradigm URL : http://www.sourceforge.net/projects/doublesvsoop License : Freeware & Open source About : New...
msfclipper
Offline Send Email
Oct 18, 2007
4:30 am
8033
Thanks guys...
Shiva Kumar
cshivain2000
Offline Send Email
Oct 18, 2007
2:12 pm
8034
assalamo 3alikom wa ra7mato allah wa barakato hi all.. eny body know the c++ code for lzw compresion&decompresion? if any body know,please send it . gazakom...
marmarcat88
Offline Send Email
Oct 21, 2007
7:40 pm
8035
Hi, Guys this is Darakshan from Jeddah I need ur help. Below r some questions for which I am not able to find answers. I need ur help very badly. C language is...
smart_students2002
smart_studen...
Offline Send Email
Oct 21, 2007
7:44 pm
8036
... You are brave. Or daring, I don't know. ... Not too easy. In general you have the following options: 1) insert every node of one tree into the other one,...
Nico Heinze
nico_heinze
Offline Send Email
Oct 22, 2007
7:06 pm
Messages 8006 - 8036 of 8312   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