File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
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...
Mar 1, 2007 11:37 am
7299
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Mar 1, 2007 11:37 am
7300
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
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...
Mar 1, 2007 11:37 am
7302
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
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...
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...
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 ...
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@...
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...
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...
Friends it will be much better if somebody explain why the two stmt works rather than giving a different approach. ... Regards, Sudhansu Ranjan Dash ...
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...
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...
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 --...
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...
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...
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...
... 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;...
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...
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...
... 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@...
Mar 10, 2007 6:21 am
7321
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
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...
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...