mylinuxlearnings.blogspot.com
LINUX LEARNINGS: Vi Adding at begining of Line
http://mylinuxlearnings.blogspot.com/2010/09/vi-adding-at-begining-of-line.html
This Blog is for LInux C Developers. Tuesday, September 28, 2010. Vi Adding at begining of Line. For Snmp MIB files to comment many lines is a challenge as we need to insert - at each line. Global Insertion at begining each line denotes begining of line. Global Removal from begining of each line. If you have line nos to change lets say from 209 to 461 both including. 209, 461 s! 209, 461 s! Posted by Amit K Sharma (xamitx). Subscribe to: Post Comments (Atom). Links And My blogs. Amit K Sharma (xamitx).
bitreader.blogspot.com
C Learnings: September 2008
http://bitreader.blogspot.com/2008_09_01_archive.html
This blog is for those who love C programing. Tuesday, September 9, 2008. Http:/ www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf. Posted by Amit K Sharma (xamitx). Subscribe to: Posts (Atom). Good c stuff form Gowri my friend. Enter your search terms. Only search Amit's Blog. Welcome to c coders world. Amit K Sharma (xamitx). View my complete profile. Provided by website-hit-counters.com.
cpluspluslearnings.blogspot.com
CPP Learnings: V table compiler option to see calss heirarchy
http://cpluspluslearnings.blogspot.com/2013/03/v-table-compiler-option-to-see-calss.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Wednesday, March 13, 2013. V table compiler option to see calss heirarchy. Base: ZTV4base: 3u entries. 0 (int (*)(.) 0. 4 (int (*)(.) (& ZTI4base). Base size=8 base align=4. Vptr=( and base: ZTV4base) 8u). Derive1: ZTV7derive1: 3u entries. 0 (int (*)(.) 0. 4 (int (*)(.) (& ZTI7derive1). Base size=12 base align=4. Vptr=( and derive1: ZTV7derive1) 8u).
cpluspluslearnings.blogspot.com
CPP Learnings: See Vtable compiler option
http://cpluspluslearnings.blogspot.com/2013/03/see-vtable-compiler-option.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Wednesday, March 13, 2013. See Vtable compiler option. Subscribe to: Post Comments (Atom). V table compiler option to see calss heirarchy. See Vtable compiler option. Http:/ www.programmersheaven.com/2/C-Plus-Plus-FAQ. Http:/ www.parashift.com/c -faq-lite/. Http:/ www.faqs.org/faqs/C -faq/. Http:/ oneparticularharbor.net/sam/interview.html.
cpluspluslearnings.blogspot.com
CPP Learnings: February 2010
http://cpluspluslearnings.blogspot.com/2010_02_01_archive.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Friday, February 19, 2010. In any inheritance Private members are not inherited . Public Inheritance : things will come as it is , Protect base- Protected deirved , Public base- Public derived . Private Inheritance : Things will come as Private Protected base- Private deirved , Public base- Private derived . Monday, February 1, 2010. How to do that?
cpluspluslearnings.blogspot.com
CPP Learnings: August 2010
http://cpluspluslearnings.blogspot.com/2010_08_01_archive.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Tuesday, August 24, 2010. C in C Code and C code in C. Extern "C" is understandable by only C compiler thats why we generaly wrap it in # if defs . When same code can be compiled by c compiler also. Only cpp compiler has defined cpluscplus. In cpp code if we want a function that will be callable from C program.We need declaration like this. F(7, 'a');.
bitreader.blogspot.com
C Learnings: May 2010
http://bitreader.blogspot.com/2010_05_01_archive.html
This blog is for those who love C programing. Friday, May 7, 2010. If we have same name static variable in two functions what will happen . Remember static variable goes in Data area . Val in f1 = 9. Val in f2 = 0. Posted by Amit K Sharma (xamitx). Subscribe to: Posts (Atom). Good c stuff form Gowri my friend. Enter your search terms. Only search Amit's Blog. Welcome to c coders world. Amit K Sharma (xamitx). View my complete profile. Provided by website-hit-counters.com.
bitreader.blogspot.com
C Learnings: Solution of C puzzeles
http://bitreader.blogspot.com/2010/04/soltion-of-c-puzzeles.html
This blog is for those who love C programing. Tuesday, April 13, 2010. Solution of C puzzeles. 1Solution : Problem is in comparison of d = -1 as unsigned int to Macro which is 5. 4294967295 (%u of -1 ) 5(%u of TOTAL ELEMENTS-2). OS HP-UX print is Erroneous '-'is not allowed in names . Reason is stdout is buffered to print we need fflush(stdout) or wait till buffer fills . Stderr is not buffered so hello-err cones to screen instantaneously. OUTPUT : In foobar1. I : 10 sizeof(i ) is: 4 i : 10.
cpluspluslearnings.blogspot.com
CPP Learnings: C in C++ Code and C++ code in C
http://cpluspluslearnings.blogspot.com/2010/08/c-in-c-code-and-c-code-in-c.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Tuesday, August 24, 2010. C in C Code and C code in C. Extern "C" is understandable by only C compiler thats why we generaly wrap it in # if defs . When same code can be compiled by c compiler also. Only cpp compiler has defined cpluscplus. In cpp code if we want a function that will be callable from C program.We need declaration like this. F(7, 'a');.
cpluspluslearnings.blogspot.com
CPP Learnings: May 2010
http://cpluspluslearnings.blogspot.com/2010_05_01_archive.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Tuesday, May 11, 2010. How to specify Exception? Func() / this can throw any Excpeption. Func() throw() / this Will NOT throw any Excpeption. Func() throw (bad alloc , X ) / this can throw only specified Excpeption. Unexpected() is called when function throws exception other than specified. It uses unexpected handler which can be changed. So that fun...