Categories
- Computer Science (39)
- C Language (4)
- Coding Discussions (16)
- Linux / Unix Shell (14)
- Others (3)
- Overview (3)
- Entertainment (4)
- GNU+Linux+FOSS (33)
- Humor (16)
- Writings (3)
- Computer Science (39)
Tags
StackOverflow
-
Top 10
- Geeky Code Wallpaper with GIMP
- Floating point math operations in bash
- Choose login manager GDM or KDM in Fedora
- Bash Script : Print lines of a file in reverse order
- C Language Constructors and Destructors with GCC
- Bash Script: Counting lines, words, characters
- Read multiple arguments in bash script
- Allegro 4.2.2
- Making a Multi Booting CD DVD USB
- Balanced Parenthesis Check
-
Recent Comments
Polls
Category Archives: Coding Discussions
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
Simpson’s 1/3rd Rule
A brief introduction to the Simpson’s 1/3rd rule and a uniform interval Composite Simpson’s 1/3rd Rule implementation.
Trapezoidal Rule
A brief introduction to the Trapezoidal rule and a uniform interval Composite Trapezoidal Rule implementation.
Balanced Parenthesis Check
Objective To check if an entered string containing nested parenthesis are balanced and valid. This write-up presents a function with which a string is checked for balanced parenthesis.
GCD of n integers
Greatest Common Divisor Let a and b be integers, not both zero. The largest integer d such that d exactly divides both a and b is called the greatest common divisor of a and b . The GCD of the … Continue reading
Sieve of Eratosthenes : A basic implementation
An basic implementation to generate prime numbers by the Sieve of Eratosthenes method. Continue reading
Posted in Coding Discussions, Computer Science
Tagged C program, prime number, Programming
7 Comments
wcat : A GNU cat implementation
A home made implementation of the GNU cat command Continue reading
An ID3v1 Tag Parsing Library
A small ID3v1 tag parsing library. Continue reading
Synchronization Safe Integer
Synchronization safe integers are related to ID3v2 tags. ID3v2 tags has a dynamic structure where the length of the tag is variable and inside the tag, there can stay a lot of frames which again can be of dynamic sizes. … Continue reading
Hero’s Method : Evaluating square root of a real number
A floating point number is given. the task is to evaluate the value of its square root. We will discuss how to find the square root of a real number in this post, and also present a C Language code which does this job. The value of the root will be evaluated with the Hero’s method. Continue reading




