Categories
- Computer Science (39)
- C Language (4)
- Coding Discussions (16)
- Linux / Unix Shell (14)
- Others (3)
- Overview (3)
- Entertainment (4)
- GNU+Linux+FOSS (35)
- Humor (16)
- Writings (3)
- Computer Science (39)
Tags
StackOverflow
-
Top 10
- Floating point math operations in bash
- Geeky Code Wallpaper with GIMP
- Bash Script : Print lines of a file in reverse order
- Read multiple arguments in bash script
- Making a Multi Booting CD DVD USB
- Generating Twin Primes, Cousin Primes and Sexy Primes
- Balanced Parenthesis Check
- Choose login manager GDM or KDM in Fedora
- Bash Script: Counting lines, words, characters
- Little and Big Endian conversion
-
Recent Comments
Polls
Category Archives: C Language
Accessing private data members directly outside from its class in C++
Private members in C++ cannot be accessed from outside the class directly. In this post I will tell an interesting fact, that in C++ however there are means with which you can access/modify the values of the private members of … Continue reading
Input Strings with Blankspaces
In CLI programs getting input from the standard input is very important. Often we need to input strings from the user. Strings are delimited by newline, blankspace character and other characters as per the user interpretation. I am discussing on … Continue reading
Allocating multidimentional array at runtime in C
Arrays in C language are static in nature, and cannot be resized at runtime. The effect of runtime allocation of an array could be achieved by hierarchically allocating blocks of memory at runtime. Below we discuss the mechanism to allocate … Continue reading
C Language Constructors and Destructors with GCC
Constructors and Destructors are special functions. These are one of the features provided by an Object Oriented Programming language. Constructors and Destructors are defined inside an object class. When an object is instantiated, ie. defined of or dynamically allocated of … Continue reading




