File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7903
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...
Jul 1, 2007 8:33 am
7904
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7905
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7906
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7907
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...
Jul 1, 2007 8:33 am
7908
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7909
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7910
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Jul 1, 2007 8:33 am
7911
File : C_Aptitude.doc Description : Know C Better...
Hi navdeep, I executed this program in VC++, and my compiler is giving an O/P 100. Which is the correct output. Compiler is incrementing value of i after...
Hi All, Please help me in understanding what's the difference between the two statements below [1] cout << "Number: " << static_cast<int>(3.14159) << "\n"; [2]...
Hi All, Please help me in understanding what's the difference between the two statements below [1] cout << "Number: " << static_cast<int>(3.14159) << "\n"; [2]...
send some document / sample programs for *Passing* an *Array* to a Function in c programming how can we use pointers efficiently in getting an array of values...
booma devi
devibooma@...
Jul 4, 2007 3:11 pm
7919
hi All, Basically compiler provides casting, like promoting int to float or double. sometime we need to type cast explicitly, tht wht u done (int)3.14159. it...
let me rephrase that: can you carify.........&p = the address of a value and *p is the value stored at p: can you carify.........*p = the address of a value...
Hi BoomaDevi, Here i am giving Simple prog for *Passing an array to the fun" #include<stdio.h> void main() { int arr[6]={1,2,3,4,5}; fun(&a); } void fun(int *s...
Dear sll, I am facing some problem in using malloc and realloc for 2D arrays. Please help me.I am scanning a file which has nubmer of rows and columns. It is...
... There IS NO ANSWER! Every compiler can treat this differently. As mentioned several times, the specifications describes this as having undefined behavior....
... NO! This is how YOUR compiler dealt with the expression. But it is NOT how ALL compilers will deal with it. There is NO right answer or reasoning for this....
Hi all I need your feedback on "Learn Kernel Bootcamp - Part 1". Based on that we'll proceed further with other Bootcamp programs in the future. Learn Kernel...
Hey buddy, i guess i have a correction/clarrification. in the function call, u are trying to check for address which is wrong. the address after the last...
Part 1 was good but I think more theorotical information regarding the internals and history of the kernels should be included... Use of particular kernel in...
Hi people, I would like to know the standard techniques used for obfuscating C and C++ code,I meant to say what is the approach taken for obfuscating code.Are...