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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6723 - 6755 of 8329   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6723
Hello I need to modify kernel routing table data structure (Linux). though this is related to linux (thus ment for linux user groups )but i hope that you can...
Abhishek Misra
abhishekfish...
Offline Send Email
Jul 3, 2005
10:18 am
6724
hi can any one tell me what is happend when c code is compiled ? In step sequence. ____________________________________________________ Yahoo! Sports Rekindle...
Anish Chauhan
anishchauhan_ec
Offline Send Email
Jul 4, 2005
1:50 pm
6725
I hope this is the seq. 1) parser makes tokens (collection of one or more symbols that are meaning ful according to 'c' standards ) and checks for syntax...
abhishek misra
abhishekfish...
Offline Send Email
Jul 5, 2005
3:50 am
6726
hello, Please let me know the possible meaning of '#' in the following code ... case 89: #line 609 "oparse.y" { cnf->hysteresis_param.thr_high =...
Abhishek Misra
abhishekfish...
Offline Send Email
Jul 5, 2005
4:15 am
6727
... This is a pre-processor directive telling it what the line number and filename it is at, at this point in the code. Look up #line in your compiler...
Paul Herring
Shabble
Offline Send Email
Jul 5, 2005
9:15 am
6729
Now, THAT was some interesting code. Let me understand this straight, the program upon execution opens its source file and then until the NULL character is...
jabbar0307
Offline Send Email
Jul 5, 2005
7:45 pm
6730
... the main() function) are not covered at all. From this point of view it's a good starting point, but no more. -- Co-mod Nico] ... message to seven or eight...
jabbar0307
Offline Send Email
Jul 5, 2005
7:46 pm
6731
<snip> ... Hi Abraham, in general I agree. However, given the quality of the site I don't think we should move it to the links section. I don't intend to...
Nico Heinze
nico_heinze
Offline Send Email
Jul 5, 2005
7:52 pm
6732
Hi, When we compile a program and errors happen during the compiling process, the compiler shows the error that happened preceded by the name of the file and...
kiran kumar
meda_kiran_k...
Offline Send Email
Jul 5, 2005
8:04 pm
6733
Thank You kiran kumar <meda_kiran_kumar@...> wrote: Hi, When we compile a program and errors happen during the compiling process, the compiler shows...
abhishek misra
abhishekfish...
Offline Send Email
Jul 6, 2005
4:01 am
6734
hi fredzs HOW CAN WE HANDLE THE SIGNALS IN C.? WRITE A SERVER PROGRAMM FOR TCP AND UDP? WRITE A PROGRAMM TO CREATE PROCESS? ... Sell on Yahoo! Auctions - No...
shilpi singh
enggshilpi
Offline Send Email
Jul 6, 2005
6:20 am
6736
using SIGSTOP function and many others shilpi singh <enggshilpi@...> wrote:hi fredzs HOW CAN WE HANDLE THE SIGNALS IN C.? WRITE A SERVER PROGRAMM FOR TCP...
srini vaas
srini_vaas_2004
Offline Send Email
Jul 6, 2005
6:56 am
6737
Hi to all, I m getting this output. void main() { printf("%d",0.1); } output: -26214 why is it so?...
snpatel2003
Offline Send Email
Jul 7, 2005
6:56 pm
6738
... If you want us to help you with your homework assignments, first you will have to tell us what YOU think will be the right answer. And if you don't have a...
Nico Heinze
nico_heinze
Offline Send Email
Jul 7, 2005
7:04 pm
6739
plz i need a hint, i wrote the program to get min , med, and max number but when u run the program it gives me the min and max correct and gives the med the...
moatassemabouelnaga
moatassemabo...
Offline Send Email
Jul 7, 2005
7:07 pm
6740
... Umm, maybe I missed something important, but I have never heard about a standard C function named SIGSTOP. I only know that there is a signal called...
Nico Heinze
nico_heinze
Offline Send Email
Jul 7, 2005
7:19 pm
6741
check the logic of your last else if statement. Also check if {} is necesary for your second else if statement etc... if you want to learn more, reserch the...
a m
andmen2000
Offline Send Email
Jul 7, 2005
7:54 pm
6742
because %d is for int (if i'm remember it right) and 0.1 is double or float. snpatel2003 <snpatel2003@...> wrote:Hi to all, I m getting this output. ...
a m
andmen2000
Offline Send Email
Jul 7, 2005
7:56 pm
6744
This program contain some logical problems. see the comment embedded.... and praveen u dint check all the conditions.... #include <iostream.h> int main () { ...
maneesh sharma
maneesh_symbian
Offline Send Email
Jul 8, 2005
11:37 am
6745
... offend ... hard ... can ... Dear Nico, To be frank, I just looked at the site only now. (^_^) Sorry if I was too quick at judgement, but though I agree...
jabbar0307
Offline Send Email
Jul 8, 2005
6:28 pm
6746
Ok, I m knowing tht 0.1 is double,but why this specific digit -26214 ? It it garbeg? I m getting this output everytime. I think %d is tring to read it as...
shital patel
snpatel2003
Offline Send Email
Jul 8, 2005
6:28 pm
6747
... Hey, I surely don't feel offended by someone telling his (or her) opinion frankly. In particular not when I have asked for it. :-) O.k., I'll post the link...
Nico Heinze
nico_heinze
Offline Send Email
Jul 8, 2005
6:32 pm
6748
... Besides the fact that Turbo-C is really outdated this somehow doesn't make too much sense to me. Let me explain why I would expect a different value: The...
Nico Heinze
nico_heinze
Offline Send Email
Jul 8, 2005
9:18 pm
6749
it is because -26314 is the integer equivalent of .1 so similar to what you've said. It is expecting an integer and the reference number is a real. Nico Heinze...
a m
andmen2000
Offline Send Email
Jul 9, 2005
2:24 am
6750
Mony XP VS Windows XP I know how to create a dynamic button in the C++ Builder but what i wanna know is how to code this button ??!...
ahmed mounir
mony_7007
Offline Send Email
Jul 9, 2005
4:49 pm
6751
If it is because -26314 is the integer equivalent of .1, I m getting same value for 0.2 . printf("%d",0.2); why? a m <andmen2000@...> wrote: it is...
shital patel
snpatel2003
Offline Send Email
Jul 10, 2005
4:16 pm
6752
... same value for 0.2 . ... <snip> That _might_ depend on the endianness of your machine. It might well be that in my lengthy explanation a few posts ago I've...
Nico Heinze
nico_heinze
Offline Send Email
Jul 10, 2005
4:24 pm
6753
Hello this simple code is not compling ... #include <list> class Abc { list<int> x; }; main() { Abc abc; printf("all ok"); } ... the error message is 'list' is...
Abhishek Misra
abhishekfish...
Offline Send Email
Jul 12, 2005
6:42 am
6754
... This is where it's wrong, try: std::list <int> x; ... [...] ... You need to read up on namespaces. Try using namespace std; after the headers if it's a...
Paul Herring
Shabble
Offline Send Email
Jul 12, 2005
8:20 am
6755
www.codingcafe.somee.com www.funcafe.somee.com copy and paste links onto your browser's addressbar Visit Now.......
Nagarjuna
nag_sunny
Offline Send Email
Jul 12, 2005
10:03 pm
Messages 6723 - 6755 of 8329   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