Search the web
Sign In
New User? Sign Up
c4swimmers · India's First C/C++ Programming Portal
? 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.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3722 - 3751 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3722
And Which one is faster between i++ and ++i ??...
Sandeep Bhandari
sandeepbhand...
Offline Send Email
May 1, 2005
10:27 am
3723
  cpu uses same instruction i.e inc for i++ and ++i. so both are executed at same speed ... [Non-text portions of this message have been removed]...
suresh reddy
sureshthati@...
Send Email
May 1, 2005
4:41 pm
3724
File : 7HabitsOfEffectiveC++.pdf Description : 7 habits of effective C++ programming...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:14 pm
3725
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:14 pm
3726
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:14 pm
3727
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3728
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3729
File : Exploring DataStructures with C.doc Description : Download the EXPLORING DATA STRUCTURES WITH C (1 - 13 Pages)...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3730
File : HowToBeAProgrammer.pdf Description : MUST READ - How To Be a Programmer / Team Person...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3731
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3732
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3733
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3734
File : Uttarainfo_ad.doc Description : Uttara - Advanced C & Unix course, Rajajinagar, Bangalore...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:15 pm
3735
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:16 pm
3736
File : malloc.c Description : Implementation of malloc in C...
c4swimmers@yahoogroup...
Send Email
May 1, 2005
6:16 pm
3737
A decent optimizing compiler will generate the same object code (i.e. the same instructions) for the statements 1) i = i+1; 2) ++i; 3) i++; If the machine's...
Lenson Andrade
lenson18
Offline Send Email
May 2, 2005
5:22 am
3738
A good (optimizing ) compiler would generate same code for: i++, ++i and i = i + 1; and a really good compiler wouldn't care. Unfortunately most of the...
Manabendra Mazumdar
manab01
Offline Send Email
May 2, 2005
5:42 am
3739
... Can you elaborate on this? Cheers, Lenson Manabendra Mazumdar <manab01@...> Sent by: c4swimmers@yahoogroups.com 2005-05-02 11:12 AM To:...
Lenson Andrade
lenson18
Offline Send Email
May 2, 2005
5:58 am
3740
Some logs from gcc, with cygwin on an x86, with no explicit optimizations. Exactly the same object code has been generated for all of the three statements...
Lenson Andrade
lenson18
Offline Send Email
May 2, 2005
9:49 am
3741
Hi every body, Some times when I face some crucial questions, if I guess something the answer would be like COMPILER DEPENDANT. What are all the compiler...
Raj Prathap
rickyprathap
Offline Send Email
May 3, 2005
6:45 am
3742
http://dev.unicals.com/c99-draft.html#J.3 Cheers, Lenson Raj Prathap <rickyprathap@...> Sent by: c4swimmers@yahoogroups.com 2005-05-03 12:14 PM To:...
Lenson Andrade
lenson18
Offline Send Email
May 3, 2005
6:56 am
3743
Hi C tricky goes here....! We have a singly linked-list like this, X0-> X1-> X2-> ....->Xn. Now you have to delete a node Xt from the list, but the chain...
knnkishor
Offline Send Email
May 3, 2005
9:23 am
3744
Hi C tricky goes here....! We have a singly linked-list like this, X0-> X1-> X2-> ....->Xn. Now you have to delete a node Xt from the list, but the chain...
knnkishor
Offline Send Email
May 3, 2005
9:24 am
3745
Copy the data from X(t+1) into Xt. Store pointer to X(t+1). Set Xt's next pointer to X(t+1)'s next pointer. Free the node X(t+1). In this way, we don't need to...
Lenson Andrade
lenson18
Offline Send Email
May 3, 2005
9:33 am
3746
Hello , i guess this could be the one solution ... Steps are 1. copy the X(t +1) node contets(Information) to the Xt node . 2. delete X(t+1) node .. X(t)->next...
shree kanth
skanth_c@...
Send Email
May 3, 2005
9:39 am
3747
Hello , FYI, The proposed solutions works for n=0 to n-1.It fails if Xt=Xn.And i guess it is not possible to delete Xn. Please let me know if a solution...
P R Rajith-in1099c
in1099c@...
Send Email
May 3, 2005
9:45 am
3748
Works for all cases except when Xt == Xn...
Harish J P
harish_123_in
Offline Send Email
May 3, 2005
9:50 am
3749
In that case (Xt ->next == NULL), delete the node outright. Of course, the previous node's next pointer would then point to an invalid location. But I doubt...
Lenson Andrade
lenson18
Offline Send Email
May 3, 2005
10:01 am
3750
try this , if you want to deleted nth node from the begining take a copy of n+1 th node in some temporory variable and delete it then change the value of nth...
nagendra reddy
nagendra_620
Offline Send Email
May 3, 2005
10:28 am
3751
Hello everyone, I need your help in understanding the output of the following c code. #include <stdio.h> int main () { int i = 0xaabbccdd; char *cptr = (char...
Nitin Gupta
nitn_gupta
Offline Send Email
May 3, 2005
10:42 am
Messages 3722 - 3751 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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