Categories
- Computer Science (46)
- C Language (5)
- Coding Discussions (21)
- Linux / Unix Shell (15)
- Others (4)
- Overview (3)
- Entertainment (4)
- GNU+Linux+FOSS (37)
- Humor (16)
- Writings (3)
- Computer Science (46)
Tags
StackOverflow
Follow Information Retrival Q&A site in Stackexchange
-
Top 10
- Geeky Code Wallpaper with GIMP
- Floating point math operations in bash
- Read multiple arguments in bash script
- Bash Script : Print lines of a file in reverse order
- Choose login manager GDM or KDM in Fedora
- C Language Constructors and Destructors with GCC
- Fix dark video in Skype for Linux
- Running Skype for Fedora x86 in Fedora x86_64
- Bash Script: Counting lines, words, characters
- Little and Big Endian conversion
-
Recent Comments
Polls
Tag Archives: numerical
Number of trailing zeros in factorial of an integer
An integer n is given, the task is to find the number of trailing zeros in n! .
Posted in Coding Discussions, Computer Science, Others
Tagged C program, counting, numerical, Programming
Leave a comment
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.
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
Finding qth real root of a real number
In this post we will see how to find nth roots of a positive real number. We will use the Newton-Raphson method to deduce an iterative formula, and see its convergence. Continue reading





