The World of COMPUTER SCIENCE

Tuesday, November 29, 2011

Dennis MacAlistair Ritchie the Creator of C Language

›
Born September 9, 1941(1941-09-09) Bronxville, New York , U.S. Died found dead October 12, 2011(2011-10-12) (aged 70) Berkeley Heights, ...
1 comment:
Monday, July 20, 2009

My Project using file handling in C

›
#include #include #include char log,sign,a; int x,c,m,z[20]; int choice; int main() { char pass[30]; char filename[30]; int b...
6 comments:

converts text into binary using the division method through ASCII code

›
#include using namespace std; #include #include char *entry, letter, choice[2]; int ascii, len, binary[8], total; void prog(); int main() { ...

Factorial Permutation and Combination in C

›
#include int factor (int num) { if (num>1) { return (num * factor(num-1)); } else{} return (1); } int main(void) { int 1num,2num,perm...

Calloc in C

›
/* SAGpa Sa bala Kan-a */ #include #include int main () { int i,n; int * pData; printf ("Amount of numbers to be entered: "); ...
›
Home
View web version
Powered by Blogger.