• Extension Method ON C#

    Updated: 2009-08-18 17:48:12
    Extension methods allow existing classes to be extended without relying on inheritance or having to

  • WebsiteNews.BlogPage

    Updated: 2009-08-17 16:34:19
    robertcmartin:Mon, 17 Aug 2009 10:34:19 -0500

  • Writing C functions in Matlab

    Updated: 2009-08-17 06:33:16
    I face a long computing time problem when I work on Matlab to compute the large and complicated matr

  • AMD’s Open Source Framewave Library

    Updated: 2009-08-12 20:38:34
    AMD’s Framewave (FW) is a free and open-source collection of image and signal processing routines to accelerate application development, debugging, and optimization on x86-class processor platforms.  FW is a collection of libraries that contain highly-optimized functions for use in a variety of programming domains. All implementations of the libraries provide C and C++ programmers ANSI [...]

  • C Programming Questions

    Updated: 2009-08-12 03:34:21
    C Programming C Questions Page 1(New) C Questions Page 2 C Questions Page 3 C Problems

  • Algorithms in C

    Updated: 2009-08-08 20:33:15
    This book provides a comprehensive collection of algorithms implemented in C programming language. A variety of algorithms are described in each of the following areas: sorting, searching, string-processing, and geometric, graph, and mathematical algorithms. These algorithms are expressed in terms of concise implementations in C, so that readers can both appreciate their fundamental properties and [...]

  • Matrix libraries for C and C++

    Updated: 2009-08-01 20:00:03
    This article presents some of the currently available options for open source C/C++ matrix libraries employable within a Linux environment. Particular libraries discussed are Meschach, which provides routines for operating on matrices and vectors for projects coded in C, the Cooperware Matrix (CwMtx) for C++ coding, and Blitz, which provides an n-dimensional array class for [...]

  • Programming and Data Types in C programming

    Updated: 2009-07-28 08:17:31
    skip to main skip to sidebar Programming Portal C,C++,VB.net,ASP.net,Java,Testing,FAQ's,Interview . Questions Home Net ASP.Net C C FAQ's Java Testing Programming and Data Types in C programming C 0 comments In C programming we have different kinds of data types in C language and this is in continuation with previous . discussion Integers signed and unsigned Sample code for syntax for unsigned inter is nsigned int num_students With this declaration , the range of permissible integer values for a 16-bit OS will shift from the range 32768 to 32767 to the range 0 to 65535. Thus , declaring an integer as unsigned almost doubles the size of the largest possible value that it can otherwise . take It happens because on declaring the integer as unsigned , the left-most bit is now free and is not used to store the sign of the . number Unsigned integer still occupies two . bytes It can be declared as unsigned int i unsigned i There also exists a short unsigned int and a long unsigned int . By default a short int is a signed short int and a long int is a signed long int in C . programming Chars , signed and unsigned Signed and unsigned chars , both occupying one byte each , but having

  • Programming and Data Types

    Updated: 2009-07-26 16:01:52
    skip to main skip to sidebar Programming Portal C,C++,VB.net,ASP.net,Java,Testing,FAQ's,Interview . Questions Home Net ASP.Net C C FAQ's Java Testing Programming and Data Types C Data types in dot net 0 comments Primary data types of programming could be of three varieties—char , int , and float . We can derive many data types from these three . types A char could be an unsigned char or a signed char . Or an int could be a short int or a long . int Integers , long and short We had seen earlier that the range of an Integer constant depends upon the . compiler For a 16-bit compiler like Turbo C or Turbo C++ the range is 32768 to 32767. For a 32-bit compiler the range would be 2147483648 to 2147483647. 16-bit compiler means that when it compiles a C program it generates machine language code that is targeted towards working on a 16-bit microprocessor like Intel 8086 8088. A 32-bit compiler like VC++ generates machine language code that is targeted towards a 32-bit microprocessor like Intel . Pentium A program compiled using Turbo C would not work on 32-bit processor . It would run successfully but at that time the 32-bit processor would work as if it were a 16-bit . processor This

  • Concepts in Multicore Programming - Lecture 3: Analysis of Multithreaded Algorithms

    Updated: 2009-07-20 12:54:00
    : Blog RSS Feed Home Why Cilk++ Why Cilk Shrink Development Time Maximize Application Performance Ensure Software Reliability Cilk++ Technology Solution Overview The Three Cilk++ Keywords Cilk++ Race Detector Cilk++ Hyperobjects Cilk++ Runtime System Cilk++ Compiler Parallel Performance Analyzer Products Download Cilk++ Download Cilk++ Academic Edition Product Demonstration Technical Specs License FAQ Cilk Arts Public License CAPL FAQ Case Studies bzip2 Compression Tool MD6 Crypto Hash Function Discrete Hedging in QuantLib Neural Network Simulation Simple Examples Matrix Transpose Matrix Multiplication N-Queens QuickSort Murphi Verification Tool Multicore Blog Forum Subscribe by Email Your : email Table of contents all blog posts Most Popular Posts What the is Parallelism , Anyhow Thread Pools : The Simplest Concurrency Platform C++ Inventor Bjarne Stroustrup answers the Multicore Proust Questionnaire A cute technique for avoiding certain race conditions Cilk Wins Most Influential PLDI Paper Award The Folly Of Do-It-Yourself Multithreading A Parallel bzip2 First Impressions of the Fortress Language Multicore-enabling the Unix Linux wc word count utility Multicore-enabling the

  • Binary Trees

    Updated: 2009-07-18 19:41:35
    A binary tree is made of nodes, where each node contains a “left” pointer, a “right” pointer, and a data element. The “root” pointer points to the topmost node in the tree. The left and right pointers recursively point to smaller “subtrees” on either side. Stanford CS Education Library: introduces the basic concepts of binary trees, [...] </a

  • Cilk++ 1.1.0 Beta - Available for Download (give it a try!)

    Updated: 2009-07-16 20:46:00
    Blog RSS Feed Home Why Cilk++ Why Cilk Shrink Development Time Maximize Application Performance Ensure Software Reliability Cilk++ Technology Solution Overview The Three Cilk++ Keywords Cilk++ Race Detector Cilk++ Hyperobjects Cilk++ Runtime System Cilk++ Compiler Parallel Performance Analyzer Products Download Cilk++ Download Cilk++ Academic Edition Product Demonstration Technical Specs License FAQ Cilk Arts Public License CAPL FAQ Case Studies bzip2 Compression Tool MD6 Crypto Hash Function Discrete Hedging in QuantLib Neural Network Simulation Simple Examples Matrix Transpose Matrix Multiplication N-Queens QuickSort Murphi Verification Tool Multicore Blog Forum Subscribe by Email Your : email Table of contents all blog posts Most Popular Posts What the is Parallelism , Anyhow Thread Pools : The Simplest Concurrency Platform C++ Inventor Bjarne Stroustrup answers the Multicore Proust Questionnaire A cute technique for avoiding certain race conditions Cilk Wins Most Influential PLDI Paper Award The Folly Of Do-It-Yourself Multithreading A Parallel bzip2 First Impressions of the Fortress Language Multicore-enabling the Unix Linux wc word count utility Multicore-enabling the

  • Effective C++: 55 Specific Ways to Improve Your Programs and Designs

    Updated: 2009-07-16 05:35:31
    This exceptionally useful text offers Scott Myers’s expertise in C++ class design and programming tips. The second edition incorporates recent advances to C++ included in the ISO standard, including namespaces and built-in template classes, and is required reading for any working C++ developer. The book opens with some hints for porting code from C to C++ [...]

  • 256-Color VGA Programming in C

    Updated: 2009-07-13 23:21:35
    David Brackeen has a very good tutorial on VGA graphics programming for DOS in C programming. The tutorial is a five part C programming tutorial which covers VGA basics, Primitive Shapes & Lines, Bitmaps & Palette Manipulation, Mouse Support & Animation and Double Buffering, Page Flipping, & Unchained Mode. This tutorial covers many topics [...]

  • C Programming Tips by Philip Guo

    Updated: 2009-07-12 17:15:14
    Philips Guo at Stranford University has useful collection of C programming lessons which may be quite useful if you are new to C programming. Guo starts by answering the simple question of why someone should start programming in C language. This is the first question you should ask yourself before sitting down to [...]

  • Ivor Horton’s Beginning Visual C++ 2008

    Updated: 2009-07-07 18:48:44
    This is one of the all-time bestselling books on the C++ language by Ivor Horton. The book teaches you both the standard C++ language and C++/CLI as well as Visual C++ 2008. Thoroughly updated for the 2008 release, this book shows you how to build real-world applications using Visual C++ and guides you through the [...]

  • C For Engineers & Scientists, An Interpretive Approach with Companion CD

    Updated: 2009-07-04 21:12:59
    C for Engineers and Scientists is designed to teach students how to solve engineering and science problems using C. This is a complete and comprehensive introduction to computer programming in C language, with introductions to object oriented programming in C++, and graphical plotting and numerical computing in C/C++ interpreter Ch and MATLAB for applications in [...]

  • Beginning iPhone Development: Exploring the iPhone SDK

    Updated: 2009-07-02 20:43:09
    Are you a programmer and looking for a challenge to write iPhone applications? If so, this book is for you. The book assumes a minimal working knowledge of Objective-C, and written in a friendly way. The book is quite easy to follow for beginners who want to develop applications for iPhone and iPod Touch. The book [...]

Last Months Items