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

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 7294 - 7323 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7294
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7295
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7296
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7297
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7298
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7299
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7300
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7301
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
Mar 1, 2007
11:37 am
7302
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Mar 1, 2007
11:37 am
7303
Hi Ashish, Thanks for the reply. I have one question, how exactly is it more efficient that what i have done? For one i can see that i used one unnecessary...
cvarun_2004
Offline Send Email
Mar 1, 2007
2:54 pm
7304
Hi All, Following code can be a better solution. int fun(u_int mask) { int len = 0; while(mask > 0) { len++; mask=mask &(mask -1); } return len; } Hope this...
hitesh.saxena@...
hiteshsdc
Offline Send Email
Mar 2, 2007
3:33 pm
7305
Hi Varun, In your code, you were looping for all the 32 bits of mask variable. In my version, the loop will exit as soon as all remaining LHS bits becomes ...
Ashish Patil
aadipa
Offline Send Email
Mar 2, 2007
4:00 pm
7306
Hi all Recently I got the following C code snippet which clears the screen : //File: clearit.c #include <stdio.h> #include <stdlib.h> int main() { ...
Karthik rampad
karthik.rampad@...
Send Email
Mar 4, 2007
6:23 am
7307
The clear screen works because you are sending ANSI codes to the console device (stdout). If your console does not support the standard ANSI commands, this...
Rick
thefirstrepa...
Offline Send Email
Mar 5, 2007
4:59 am
7308
Hi all, I don't know the above code works or not. But i could suggest a method, Just find the co-ordinates of the screen and put " " in each of the screen...
sampath
gopathis04
Offline Send Email
Mar 6, 2007
4:39 am
7309
Friends it will be much better if somebody explain why the two stmt works rather than giving a different approach. ... Regards, Sudhansu Ranjan Dash ...
sudhansu ranjan dash
rslitu
Offline Send Email
Mar 6, 2007
10:06 am
7310
This wiki page has some good info http://www.codepedia.com/1/CGraphics ... Ashish Patil Sr. Developer - Java ME Hungama Mobile +91-9820665520 ... [Non-text...
Ashish Patil
aadipa
Offline Send Email
Mar 7, 2007
3:23 am
7311
HELLO FRNDS I HAVE TO PROBLEMS TO SOLVE CUD U PLS ABLE TO HELP ME: 1) How to interchange the odd and even components of an array: 2) How to find the lcm of 2...
naresh kumar
naresh_sakhi
Offline Send Email
Mar 7, 2007
3:24 am
7312
Hi, This is by using the ASCII/ANSI control characters. These are for the terminal. From the bottom Table you can see that Erase in DisplayCSI Ps J Ps --...
Shinu Abdulu
shinu_vk
Offline Send Email
Mar 7, 2007
3:25 am
7313
Hi, It seems that you have not checked on linux system I am working on gcc 3.2.2 And printf is working very fine i.e it is able to clear the screen #include...
vijayendra suman
vicky_827006
Offline Send Email
Mar 8, 2007
4:47 am
7314
hi friends the below questions are asked in interview if u know the answer say me q1:difference between two numbers with out using operators q2:ffind a given...
deepa gopal
nikideepa19
Offline Send Email
Mar 8, 2007
4:48 am
7315
ans for the second question ( find out a number odd or even) ans[2][5]={"even","odd"}; printf(ans[no&1[); hi friends the below questions are asked in interview...
susai maria
susai_maria2001
Offline Send Email
Mar 8, 2007
4:15 pm
7316
... mask. ... mask in network ... Hi, Ashish patil has given a very good solution. I have just added statements to make it look complete. For ( len = 0; mask;...
Pradeep, CK (IE10)
ckpradip
Offline Send Email
Mar 8, 2007
5:13 pm
7317
can u plz explain me the steps . susai maria <susai_maria2001@...> wrote: ans for the second question ( find out a number odd or even) ...
deepa gopal
nikideepa19
Offline Send Email
Mar 9, 2007
8:20 am
7318
yeah...i will explain.. left most bit of any even no will be 0 and lfet most bit of any odd no will be 1. even no (bitwise AND )1=>0 , array[0]=even odd no...
susai maria
susai_maria2001
Offline Send Email
Mar 10, 2007
3:23 am
7319
thank u for u explanation .did u know the answer for other two question susai maria <susai_maria2001@...> wrote: yeah...i will explain.. left most bit of...
deepa gopal
nikideepa19
Offline Send Email
Mar 10, 2007
5:33 am
7320
... functions I suggest you to implement the equivalent pow(n,x) function on your own and then pass x=1/2 for square root. Example: sqrt(25) == pow(25,1/2) ==...
Karthik rampad
karthik.rampad@...
Send Email
Mar 10, 2007
6:21 am
7321
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Mar 11, 2007
10:20 am
7322
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
Mar 11, 2007
10:20 am
7323
soln for difference between two numbers with out using operator u can use bit wise operaors to find the diff between 2 nos.. deepa gopal...
susai maria
susai_maria2001
Offline Send Email
Mar 11, 2007
6:22 pm
Messages 7294 - 7323 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