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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 9080 - 9109 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9080
The output id due to the way logical operators are evaluated. int i,j=2,k=4; i=(j>3)&&(++k==6); =(2>3)&&(++k==6); =0 && (++k==6); =0; // Since 1st condition is...
Ashish Patil
aadipa
Offline Send Email
Oct 20, 2009
2:06 pm
9081
Hi,      int i,j=2,k=4; i=(j>3)&&(++ k==6); (j>3)  this condition is false will be not executed the next condition for (++k==6) so k value is not...
Venkatesan pachamuthu
pvenkatesan83
Offline Send Email
Oct 20, 2009
2:06 pm
9082
Why these both statements have same output?? why i++ and ++i works alike in for loop??    for(int i=0;i<5;i++) or for(int i=0;i<5;++i);    cout << i <<...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 20, 2009
2:06 pm
9083
 Hi All, i was making "tictac toe" a famous game. i made it but the following portion of the prog although it works but it does not seems good to me. i...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 20, 2009
2:06 pm
9084
Hi all, I am new to c++, and i want to expand my knowledge on c++. i want to ask that any respectable member have beginner level programming problems, then...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 20, 2009
2:06 pm
9085
Hi,  ++i; This statement first increment the value and store the variable  i++; This statement is first store the variable and increment the value,so...
Venkatesan pachamuthu
pvenkatesan83
Offline Send Email
Oct 21, 2009
6:27 am
9086
for(int i=0;i<5;i++) & for(int i=0;i<5;++i) are both same. Here i++ or ++i is being used to increment the value of i by 1, which they both do that...
ravi sundriyal
ravisundriyal@...
Send Email
Oct 21, 2009
6:28 am
9087
for(stmt.1;stmt2;stmt4)     {           stmt4; ... From: Asad Abbas <cyberstudent99@...> Subject: [c4swimmers.net] for loop i++ and ++i ? To:...
abhishek kumar
piyush_tdh
Offline Send Email
Oct 21, 2009
6:28 am
9088
The format of for loop is as follows.. for(stmt1;stmt2;stmt4) { stmt3; } where stmt=> statement and the execution sequence is as :...
abhishek kumar
piyush_tdh
Offline Send Email
Oct 21, 2009
6:29 am
9089
Thanks all of you for ur suggestions, comments and help! Thanx again!!...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 27, 2009
4:46 pm
9090
How floating point data are normalized if anybody knows kindly help me     patro [Non-text portions of this message have been removed]...
epili patro
patrosir
Offline Send Email
Oct 27, 2009
4:47 pm
9091
because the for loop evaluate the first two statement and when the for loop body ends it  evaluate the third statement.     the working of unary operator++...
farrukh ansari
farrukh_ansa...
Offline Send Email
Oct 27, 2009
4:47 pm
9092
hi abbas iam riyaz wasalm alaikum "i++" and"++i" is same and equal .when using individually.it will different when using in staements and expressions check...
riyaz
riyaz_ina
Offline Send Email
Oct 27, 2009
4:47 pm
9093
you can modify this code to suit your requirement..... like adding return value to the function find_win_func(int row,int col) // put this in ur function ...
ravi sundriyal
ravisundriyal@...
Send Email
Oct 27, 2009
4:48 pm
9094
Hi All, Manny languages like C++ provides a way to generate random numbers. Like C++ provides a rand(); function to do this. But (it might be silly to ask) the...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 29, 2009
3:37 pm
9095
Hi All, While dealing with functions in C++ . Generally, the C++ convention is the call-by-value. An exception is where arrays are passed as arguments, Arrays...
Asad Abbas
cyberstudent99
Offline Send Email
Oct 29, 2009
3:37 pm
9096
A little google search would have saved. http://en.wikipedia.org/wiki/Random_number_generation#Computational_methods The numbers will be generated in same...
Ashish Patil
aadipa
Offline Send Email
Oct 30, 2009
8:36 am
9097
Hi C/C++ enthusiasts Who am I: C For Swimmers - India's First C/C++ Programming Portal Where am I: www.c4swimmers.net What we do: Discover the depth of C Who...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9098
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9099
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9100
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9101
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9102
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9103
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9104
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9105
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9106
Hi C/C++ enthusiasts Who am I: C For Swimmers - India's First C/C++ Programming Portal Where am I: www.c4swimmers.net What we do: Discover the depth of C Who...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9107
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Nov 1, 2009
8:21 am
9108
I don't know how rand() is implemented, but I have heard somewhere that the hardware interrupts like, keyboard, network interrupts are used to generate true...
srinivas g
srini_g2003
Offline Send Email
Nov 3, 2009
11:06 am
9109
Hi asad, I think the random number generator function takes its input as the system time... and you know that system time changes continously.. so accordingly ...
Sunil goyal
thaparian_436
Offline Send Email
Nov 3, 2009
11:07 am
Messages 9080 - 9109 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