DirectoryTechnologyBlog Details for "C CPP Blogging"

C CPP Blogging

C CPP Blogging
This site features c,cpp programming, embbed systems programming for professionals and students
Articles: 1, 2, 3

Articles

Wordpress Plugin for Saving Post as Text and Html
2008-06-08 20:52:00
This is certainly an offbeat post from me. I wanted to give an option for users to save posts as text in another weblog, I’d find no plugin for this, so came up with one and sharing now with community. Description Post can be saved as text and can also be saved as html. Download Save Post as Text ... SHARETHIS.addEntry({ title: "Wordpress Plugin for Saving Post as Text and Html", url: "http://www.openasthra.com/opensource/wor dpress-plugin-for-saving-post-as-text-and -html/" });
More About: Open , Source
C, C++, Programming, Data Structures Quizzes
2008-04-28 15:34:00
OpenAsthra introducing c, c++, programming, os, data structures quizzes http://quiz.openasthra.com/ (note: We didn’t not upload all of our quizzes, we put some samples for now, however framework is fully functional, we will upload soon) Please submit your quizzes to [openasthra AT gamil DOT com]) Assess Your C Skills is back You can use same authentication information (user ... SHARETHIS.addEntry({ title: "C, C++, Programming , Data Structures Quizzes ", url: "http://www.openasthra.com/uncategorized/ c-c-programming-data-structures-quizzes/" });
More About: Data Structures
Man Pages
2008-04-19 16:35:00
SHARETHIS.addEntry({ title: "Man Pages ", url: "http://www.openasthra.com/uncategorized/ man-pages/" });
Swapping nodes in a single linked list
2008-01-12 11:59:00
Here is algorithm for swapping two nodes in linked list.. /*A complete swap algorithm which cares of several scenarios while swapping two nodes in a linked list which doesn't have any special nodes scenarios considered while swapping 1)two nodes which are far away 2)two nodes which are far away, ... SHARETHIS.addEntry({ title: "Swapping nodes in a single linked list", url: "http://www.openasthra.com/c-tidbits/swap ping-nodes-in-a-single-linked-list/" });
More About: List , Single , Nodes
Balanced (AVL) Binary Search Trees
2007-12-28 14:25:00
An AVL (adelson-velskii-landis) tree also known as balanced tree is a binary search tree with a balance condition. The balance condition is that for every node in the tree, the height of left and right subtrees can differ by at most 1. The condition ensures that the depth of the tree is O(log N). ... SHARETHIS.addEntry({ title: "Balanced (AVL) Binary Search Trees ", url: "http://www.openasthra.com/c-tidbits/bala nced-avl-binary-search-trees/" });
More About: Code
C Quiz - 1
2007-12-26 14:11:00
Welcome Welcome to the OpenAsthra QuestionPatterns. This exam contains 10 questions of which you’ll have to answer at least 7 correct to pass.Please do not use any back button while doing this testPlease press the button below to continue to the first question. SHARETHIS.addEntry({ title: "C Quiz - 1", url: "http://www.openasthra.com/question-patte rns/c-quiz-1/" });
Test Quiz Post
2007-12-26 14:11:00
Welcome Welcome to the default WB_Exam questions. These questions are meant to show the capabilities of this plugin.This exam contains 5 questions of which you’ll have to answer at least 2 correct to pass.To use this plugin put a wb_exam(); tag in a page_template and add a custom key ‘question_file’ to your page pointing to your ... SHARETHIS.addEntry({ title: "Test Quiz Post ", url: "http://www.openasthra.com/question-patte rns/test-quiz-post/" });
Printing Binary Trees in Ascii
2007-12-21 15:44:00
Here we are not going to discuss what binary trees are (please refer this, if you are looking for binary search trees), or their operations but printing them in ascii. The below routine prints tree in ascii for a given Tree representation which contains list of nodes, and node structure is this struct Tree { Tree ... SHARETHIS.addEntry({ title: "Printing Binary Trees in Ascii ", url: "http://www.openasthra.com/c-tidbits/prin ting-binary-trees-in-ascii/" });
Binary Search Trees
2007-12-21 14:58:00
A binary tree is a tree in which no node can have more than two children. The property that makes a binary tree into a binary search tree is that for every node, X, in the tree, the values of all the keys in its left subtree are smaller than the key value in X, ... SHARETHIS.addEntry({ title: "Binary Search Trees ", url: "http://www.openasthra.com/c-tidbits/bina ry-search-trees/" });
C++ Advanced Tutorial - Lesson 11
2007-12-08 13:33:00
Please refer Lesson 10.. 11. SOME INDIVIDUAL TOPICS 11.1 DOS Keyboard Characteristics 11.2 Detach Method for Wrapper Classes 11. SOME INDIVIDUAL TOPICS 11.1 DOS Keyboard Characteristics When any key on the keyboard is pressed, a parameter in the operating system is set, and this parameter can be checked through method ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 10
2007-12-08 13:24:00
Please refer Lesson 9.. 10. ANSI/ISO C++ STANDARD LANGUAGE ADDITIONS 10.1 bool 10.2 Four Casts 10.3 Namespace 10.4 Run-Time Type Information (RTTI) 10.5 Operator Keywords 10.6 explicit Constructor 10.7 mutable ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 9
2007-12-08 12:54:00
Please refer Lesson 8.. 9. STANDARD TEMPLATE LIBRARY (STL) 9.1 Introduction to Container 9.2 Iterator 9.3 Iterator Types 9.4 Iterator Capabilities 9.5 Iterator Capabilities Supported by Different Containers 9.6 ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 8
2007-12-08 10:17:00
Please refer Lesson 7.. 8. CLASS STRING & STRING STREAM PROCESSING 8.1 Basics of string 8.2 String Assignment 8.3 Creating Strings 8.4 Appending Strings 8.5 Comparing Strings 8.6 ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 7
2007-12-08 09:39:00
Please refer Lesson 6.. 7. C - LIKE CODE 7.1 Redirecting Input & Output on UNIX/DOS Systems 7.2 Variable-Length Argument List 7.3 Command-Line Arguments 7.4 Program Termination with Exit and Atexit 7.5 ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 6
2007-12-08 07:25:00
Please refer Lesson 5.. 6. THE PREPROCESSOR 6.1 #include 6.2 Conditional Compilation 6.3 #define Symbols for Conditional Compilation 6.4 #define for Constants vs. C++ Constants 6.5 #define for Macros vs. ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 5
2007-12-07 16:28:00
Please refer Lesson 4.. 5. DATA STRUCTURES 5.1 Data Structure 5.2 Linked List 5.3 Tree 5.4 Struct 5.5 Bitwise Operators 5.6 Example: Display a Number in ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 4
2007-12-07 15:24:00
Please refer Lesson 3.. 4. EXCEPTION HANDLING 4.1 What is Exception Handling 4.2 Do Not Use Exception Handling on Normal Application Code 4.3 try Block 4.4 throw 4.5 Throw Point 4.6 ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 3
2007-12-07 11:18:00
Please refer Lesson 2.. 3. TEMPLATES 3.1 Function Template 3.2 Class Templates 3.3 The Power of Type Extensibility with Class Template 3.4 Non-Type Parameters in Class Template 3.5 Templates ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 2
2007-12-07 11:01:00
Please refer Lesson 1.. 2. MULTIPLE INHERITANCE 2.1 Multiple Inheritance and Interface 2.2 Virtual Inheritance 2.3 Method Name Clash and Ambiguity in Multiple Inheritance 2. MULTIPLE INHERITANCE 2.1 Multiple Inheritance and Interface It is commonly believed that multiple inheritance tends to mass things ...
More About: Tutorials , Tutorial , Vance
C++ Advanced Tutorial - Lesson 1
2007-12-07 10:09:00
Please refer C++ Basics before reading this tutorial.. 1. VPTR AND VTABLE 1.1 A Class and its Objects in the Memory 1.2 Linking of a Method Call 1.3 Memory Footprint of a Non-polymorphic Object 1.4 ...
More About: Tutorials , Tutorial , Lesson , Vance
C++ Basics Tutorial - Lesson 11
2007-12-06 16:01:00
Please refer lesson 10.. 11. File Processing 11.1 Data Hierarchy 11.2 Primary Key 11.3 Files and Streams 11.4 File Open Modes 11.5 Checking open and input success 11.6 Method exit 11.7 ...
More About: Tutorials , Tutorial , Lesson , Basics
C++ Basics Tutorial - Lesson 10
2007-12-06 15:35:00
Please refer lesson 9.. 10. Stream IO 10.1 Iostream Library Header Files 10.2 Stream IO Classes and Objects 10.3 Output the address of a pointer 10.4 Method put 10.5 Stream Input 10.6 Unformatted ...
More About: Tutorials , Tutorial , Lesson , Basics
C++ Basics Tutorial - Lesson 9
2007-12-06 14:35:00
Please refer lesson 8.. 9. Polymorphism 9.1 Virtual Methods 9.2 Polymorphism 9.3 Dynamic and Static Binding 9.4 Abstract Base Class (ABC) 9.5 Virtual Destructor 9.6 Hierarchy ...
More About: Tutorials , Tutorial , Lesson , Basics
C++ Basics Tutorial - Lesson 8
2007-12-06 14:22:00
Please refer lesson 7.. 8. Inheritance 8.1 Method Overriding 8.2 Initialization of the Base-class Part of the Object 8.3 Conversion between base class and derived class 8.4 is-a , has-a , “Use-A” ...
More About: Tutorials , Tutorial , Lesson , Basics
C++ Basics Tutorial - Lesson 7
2007-12-06 13:58:00
Please refer lesson 6.. 7. Operator Overloading 7.1 Fundamentals of Operator Overloading 7.2 Overloading binary operators 7.3 Operator > can not be Member Functions 7.4 Overloading Unary Operators 7.5 Operator ...
More About: Tutorials , Tutorial , Lesson , Basics
Safe String Copy(strcpy) and Concatenate(strcat) Operations
2007-12-04 17:27:00
I’d covered bad standard APIs in my previous article, here I’ve attempted to overcome those defects in standard APIs, please check these fucntions.. I’ll post more functions later.. Strcpy: 1)copy src to string dst of size size 2)At most size-1 characters will be copied 3)Returns strlen(src); if retval >= size, truncation occurred 4)Always NUL terminates (unless size is 0) size_t safe_strcpy(char ...
More About: Copy , String , Safe , Tring , Tena
i64toa - Converts a 64 bit integer to string
2007-12-04 16:35:00
Here is the program for converting a 64bit integer to string/char */ascii.. Please let me know any issues, suggestions..   //Converts a 64bit integer to a string bool i64toa( int64 value, char * buf, int maxLen) { int lsbByte = 0; char tempchr[10]; char tmpchar; int count = 0; int bufLen = 0; bool ...
More About: String , Tring , Vert
Clipping and Clamping with out ?if condition?
2007-06-14 17:19:00
Given an example, if the signed integer number is more than 255 then set the number to 255(clipping). On the other hand, if the signed integer is less than 0, then set the number to 0(clamping). This is implemented in C using ‘if condition’, which looks like the below code int ClipNClamp(int val) { if(val < 0) ...
More About: Condition , Lamp , Ping , Condi , Lippi
Clipping and Clamping with out ?if condition?
2007-06-14 17:19:00
Given an example, if the signed integer number is more than 255 then set the number to 255(clipping). On the other hand, if the signed integer is less than 0, then set the number to 0(clamping). This is implemented in C using ‘if condition’, which looks like the below code int ClipNClam p(int val) { if(val < 0) ...
More About: Condition
Constant and Volatile
2007-05-28 19:41:00
Any type can be qualified by the type qualifiers const or volatile.In simple declarations, the type qualifier is simply another keyword in the type name, along with the basic type and the storage class. Syntax for the const and volatile keywords int * volatile x; /* x is a volatile pointer to an ...
More About: Expressions , Types
More articles from this author:
1, 2, 3
39690 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - SEO by FeWorks
eXTReMe Tracker