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...
hi can any one tell me what is happend when c code is compiled ? In step sequence. ____________________________________________________ Yahoo! Sports Rekindle...
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...
... 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...
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...
... 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...
<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...
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...
Thank You kiran kumar <meda_kiran_kumar@...> wrote: Hi, When we compile a program and errors happen during the compiling process, the compiler shows...
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...
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...
... 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...
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...
... 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...
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...
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. ...
This program contain some logical problems. see the comment embedded.... and praveen u dint check all the conditions.... #include <iostream.h> int main () { ...
... 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...
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...
... 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...
... 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...
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...
... 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...
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...
... 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...