Results 1 - 9 of about 9
Generating random numbers with rand()
Generating random numbers with rand() You may have noticed when using the rand() found in the standard library of C language, you often...
Oct  3, 2009Programming > Languages > C Language
[C language]Handling 64-bit integers
[C language]Handling 64-bit integers Unsigned 64-bit integer Example: Signed 64-bit integer Example: Basically in C language, an...
Oct  3, 2009Programming > Languages > C Language
[C Language] finding the square root of a number
[C Language] finding the square root of a number Intro Notes Intro A simple C program allowing you to find the square root of a number....
Oct  1, 2009Programming > Languages > C Language
Swapping two variables without using a temp variable
Swapping two variables without using a temp variable Using pointers Making use of a Macro Using pointers #include <stdio.h> void...
Aug  9, 2009Programming > Languages > C Language
CAML- Categorical Abstract Machine Language
CAML- Categorical Abstract Machine Language Caml is the acronym for Categorical Abstract Machine Language. As mentioned, it is a...
May 22, 2009Programming > Languages > C Language
C/C++V Error segmentation
C/C++V Error segmentation Under C Under C++ When developing an application in C/C++ under Linux, when launching the application for...
Nov 27, 2008Programming > Languages > C Language
[C language]Checking whether an integer is a prime number
[C language]Checking whether an integer is a prime number Definition of a prime number Algorithm 1: dividers between 2 and N-1 will be...
Nov 23, 2008Programming > Languages > C Language
Compiling a program in C with Dev C++ on Vista
Compiling a program in C with Dev C++ on Vista Compiling a C source code under Vista with Dev C++, can be a quite difficult procedure....
Nov 21, 2008Programming > Languages > C Language
Where to find a C/C++ compiler
Where to find a C/C++ compiler On Linux the gcc compiler is already available. To use it type in: gcc –o executable source(s) For...
Sep 30, 2008Programming > Languages > C Language