Main > Free Download Search >

Free deitels c software for windows

deitels c

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 217
VidSplitter 2.0 c

VidSplitter 2.0 c


Do you have large video files and want to split to small pieces in order to record them to several CD or DVD? VidSplitter is that you are loking for video splitting. VidSplitter is a complete Video sp more>>
Do you have large video files and want to split to small pieces in order to record them to several CD or DVD? VidSplitter is that you are loking for video splitting. VidSplitter is a complete Video spliiting tool that lets you to split large AVI, mpeg, WMV, ASF files into smaller video clips in various formats. it is very easy and quick.
VidSplitter does not requires any technical experience and is very easy to use. thets why any even newbie to video splitter can manage it.
<<less
Download (8120K)
Added: 2008-01-21 License: Freeware Price: $0
641 downloads
Freecell C# 1

Freecell C# 1


Play a card game using photo-realistic cards. more>>

Freecell C# 1 allows you to play a card game using photo-realistic cards. It has a clean interface, more stats than the Microsoft version including Best Time and Least Moves, as well as a Save/Open option. The card shuffle algorithm is identical to the one Microsoft uses.

<<less
Download (778KB)
Added: 2007-01-04 License: Freeware Price:
414 downloads
Pelles C 5.00.1

Pelles C 5.00.1


Development kit for writing Windows and Windows Mobile applications. more>> Pelles C is a complete development kit for Windows and Windows Mobile. It contains among other things an optimizing C compiler, a macro assembler, a linker, a resource compiler, a message compiler, a make utility and install builders for both Windows and Windows Mobile.
It also contains an integrated development environment (IDE) with project management, debugger, source code editor and resource editors for dialogs, menus, string tables, accelerator tables, bitmaps, icons, cursors, animated cursors, animation videos (AVIs without sound), versions and XP manifests.
The compiler is based on LCC (by Chris Fraser and David Hanson), and the install builder for Windows is based on NSIS. Both are heavily modified.
Features:
Support for 32-bit Windows (X86), 64-bit Windows (X64), and Windows Mobile (ARM).
Support for the C99 standard.
Integrated source code editor with call tips and symbol browsing.
Integrated source-level debugger.
Project management.
Inline assembler for X86 and ARM.
Integrated resource editor.
Integrated bitmap, icon and cursor editor.
Integrated animated cursor and video editor.
Integrated hex-dump editor.
Support for custom controls in the dialog editor.
Support for custom project wizards.
Pelles C is free! (but this site, and all the work, isnt - so donations are welcome)
<<less
Download (8.32MB)
Added: 2008-06-29 License: Freeware Price: Free
707 downloads
 
Other version of Pelles C
Pelles C 4.50.113An optimizing C compiler, a linker, a resource compiler, a message compiler, a make utility and ... An optimizing C compiler, a linker, a resource compiler, a message compiler, a make utility and
License:Freeware
Download (7.21MB)
1000 downloads
Added: 2007-08-19
Pelles C 4.0.5Pelles C 4.0.5 is a utility to design Windows and Pocket PC applications. It contains among ... an optimizing C compiler, a linker, a resource compiler, a message compiler, a make utility
Price: $0.00
License:Freeware
Download (6.6MB)
164 downloads
Added: 2006-03-21
C-Pen Suite 1.0

C-Pen Suite 1.0


C-Pen suite is a collection of small programs that can be configured to work with your existing C-Pen software more>>
C-Pen suite is a collection of small programs that can be configured to work with your existing C-Pen software.
Using these great programs you can extract the First Name and Last Name from a Full Name scanned with the pen. You can also Delete one row or an entire window with text using one of the included programs.
<<less
Download (139KB)
Added: 2005-10-04 License: Freeware Price:
1531 downloads
i-Covers 2005 c

i-Covers 2005 c


i-Covers is a product featuring a search engine for movie covers on the Internet. more>>

i-Covers 2005 c is a product featuring a search engine for movie covers on the Internet. Have a database on the Web allowing you to search through 13000 movie covers. The perfect freeware to seek, find and download movie covers.

<<less
Download (1.3MB)
Added: 2005-06-17 License: Freeware Price:
downloads
Driver trailer C (AVI)

Driver trailer C (AVI)


Driver trailer C (AVI) is designed as a movie for Driver. more>> <<less
Download (6.1MB)
Added: 2003-10-22 License: Freeware Price:
downloads
MiM Lite C (Esp) 1

MiM Lite C (Esp) 1


MiM Lite C (Esp) allows you to chat with your friend on mobile phone. more>> MiM Lite C (Esp) allows you to chat with your friend on mobile phone.MiM Lite C (Eng) supports Nokia 3230/3600/3620/3650/3660/6260/6600/6620/6630/6680/6681/6682/6670/6630/7610/7650/N-Gage/N-GageQD/E60/E61/E70/N70/N71/N80/N90/N91/N92/6280/6630/6650/6651/6680/7600 and Samsung SGH-Z500.<<less
Download (54KB)
Added: 2008-07-27 License: Freeware Price: Free
708 downloads
C++ sets class 1.0

C++ sets class 1.0


C++ sets class can be used to perform set operations in your programs more>>
You can use the sets class to perform set operations in your programs. It represents set elements as bits in a private array of unsigned long integers. The array size is a defined constant which can be changed to suit your application.
The sets class supports the following set operations by means of C++ operator overloading:
union
The union of two sets A, B is the set of all elements which belong to either A or B. In the sets class, the symbol + is the binary union operator:
A + B = {x: x is in A -or- x is in B }
intersection
The intersection of two sets A, B is the set of all elements which belong to both A and B. The symbol * is the binary intersection operator:
A * B = {x: x is in A -and- x is in B }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A + B = {1, 2, 3, 4, 5, 6}
A * B = {3, 4}
complement
In set theory, sets are subsets of a fixed universal set U. In the sets class, U is the set of elements numbered from 1 to MAX_WORDS * WORD_SIZE. In the class declaration file below, the following definitions are made:
#define MAX_WORDS 2
#define WORD_SIZE ( 8 * sizeof( unsigned long ) )
These parameters make the range of U, 1 to 64 in sets. To increase or decrease the size of U, change the defined value of MAX_WORDS.
The complement of set A is the set of elements belonging to U but not belonging to A. The symbol ~ is the unary complement operator:
~A = {x: x is in U, x is not in A }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
~A = {5, 6, 7, . . .}
~B = {1, 2, 7, 8, 9, . . .}
difference
The difference of two sets A, B is the set of all elements which belong to A less those in B. The symbol - is the binary difference operator:
A - B = {x: x is in A, x is not in B}
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A - B = {1, 2}
It can be shown that A - B = A * ~B.
symmetric difference
The symmetric difference of two sets A, B is the set of all elements which belong to A or to B, but not both.
<<less
Download (13.6KB)
Added: 2006-11-11 License: Freeware Price:
1083 downloads
Control C 1.3

Control C 1.3


Monitor all data on your clipboard. more>> What is ControlC? Its pretty simple actually. Have you ever copied something on a webpage or in an email that you later needed to look at again but couldnt remember where you saw it?
Have you ever copied a link to a webpage and couldnt for the life of you remember the link later on?
ControlC fixes that. Anytime you copy textual content, ControlC will upload that text to our server to store under your account. When the text is uploaded, it is encrypted using your password as the key (which we will never have access to). When you need to retrieve the text, or would like to share it with other users, you can login to your account and make the items public, or simply review them for your own needs.
You can search other users copied links and text to find other people that share the same interests as you. You can make friendship relationships with other users, and star items of interest to make finding them again easy. You are encouraged to social interact with other users on our site - you will be surprised what you can find when you do!
<<less
Download (276KB)
Added: 2008-07-06 License: Freeware Price: Free
524 downloads
 
Other version of Control C
Control C 1.3.0How many times a day do you copy and paste something? How often do you later wish you had ... Control C is an automated solution that will monitor your clipboard and store the data for you
License:Freeware
Download (276k)
368 downloads
Added: 2008-10-30
Digital Mars C/C++ Compiler 8.50

Digital Mars C/C++ Compiler 8.50


A Free C/C++ compiler for the for Win32, Win16, DOS32 and DOS environment. more>> Digital Mars C and C++ Compilers for Win32, Win16, DOS32 and DOS. Fastest compile/link times, powerful optimization technology, Design by Contract, complete library source, HTML browsable documentation, disassembler, librarian, resource compiler, make, etc., command line and GUI versions, tutorials, sample code, online updates, Standard Template Library, and much more.
Features
- C and C++
- Support for Win32, Win16, DOS16 and DOS32 all in one package.
- Fastest compile/link times in the industry.
- Powerful optimization technology with advanced register allocation and instruction scheduling.
- Design by Contract added into C++.
- SGIs Standard Template Library 3.3.
- STLport 4.5.3 (for Win32).
- Synesis Softwares STLSoft libraries.
- Integrated development and debugging environment (IDDE).
- Powerful inline assembler supporting Intel MMX, SSE, SSE2 and AMD 3Dnow! extended instructions
- Documentation in browsable HTML format.
- Tutorials and sample code.
- Updates available online.
- Extensive set of related tools like resource compiler, object disassembler, librarian, resource editors, make, help compiler, etc.
- Complete library source, including floating point.
- Many C99 features like VLAs and advanced macros.
- Command line versions as well as GUI versions of tools.
- No registration required, no time bombs, no DRM, no phone home, no activation.
- Online support and user community.
<<less
Download (2.79MB)
Added: 2007-10-31 License: Freeware Price: Free
22646 downloads
 
Other version of Digital Mars C/C++ Compiler
Digital Mars C/C++ Compiler 8.49Digital Mars C/C++ Compiler contains C & C++ compiler, optimized ... Can be used as a Symantec C++ drop-in compiler. Main features: - Win32 console versions of the
License:Freeware
Download (2.86MB)
24021 downloads
Added: 2004-01-15
New Bloodshed C++ 3.0

New Bloodshed C++ 3.0


A free C++ compiler. more>>
Just download this free C++ compiler. It rules!
<<less
Download (6800k)
Added: 1999-06-26 License: Freeware Price: $0.00
2094 downloads
C/C++ interpreter Ch 4.5

C/C++ interpreter Ch 4.5


Ch is an embeddable C/C++ interpreter for cross-platform scripting, 2D/3D plotting, numerical computing, shell programming and embedded scripting. more>>
*C/C++ interpreter
Ch supports C99 and C++ classes. Ch supports many industry standards with over 8,000 functions including POSIX, socket/Winsock, X11/Motif, OpenGL, ODBC, C LAPACK, GTK+, Win32, and CGI.
* Shell programming and cross-platform scripting
Ch shell is C compatible shell while C-shell (csh) is a C like shell. Ch is an interpretive implementation of C, similar to Unix/MS-DOS shells. Ch in Windows includes over 100 commonly-used Unix commands for portable shell programming. Ch can also be used as a login shell just like sh, csh and ksh. Ch bridges the gap between the C language and shell languages. With its built-in string type and many enhanced scripting features, Ch is an alternative to other scripting languages for automating repetitive tasks, regression test, and hardware testing.
* 2D/3D plotting and numerical computing
Ch supports 2D/3D graphical plotting, C LAPACK, high level numeric functions.
Ch has built-in 2D/3D plotting support, generic mathematical functions and computational arrays for linear algebra and matrix computations, and advanced high-level numerical functions for linear systems, differential equation solving, Fourier analysis, curve fitting, etc.
*Interface with binary C/C++ libraries
Ch SDK 4.5 can easily integrate the existing C/C++ libraries as part of Ch sripting module. Functions and classes in static or dynamical libraries can be invoked in a Ch script file or Ch command shell.
* Embeddable scripting
Ch 4.5 is optimized for embedded scripting. Embedded Ch allows users to embed Ch into other C/C++ application programs and hardware. It is ideal for game and open-architecture application integration. With Embedded Ch, C/C++ applications can be extended with all features of Ch. It allows execution of C/C++ scripts generated dynamically on-line. Embedded Ch has a small footprint.
<<less
Download (20000K)
Added: 2004-01-24 License: Freeware Price: $0.00
2137 downloads
Net-C 0.1.2

Net-C 0.1.2


Multi-platform Java serverless LAN chat. Smiles, private Messages, group chats, user status. more>> <<less
Download (1.00MB)
Added: 2009-02-13 License: Freeware Price:
259 downloads
 
Other version of Net-C
Net-C 0.1.1Net-C Multi-platform Java serverless LAN chat. Smiles, private Messages, group chats
License:freeware
Download (1.0MB)
417 downloads
Added: 2008-09-07
Net-C 0.1.1.0The Net-C application was designed to be a multi-platform chat software for Lan. So you can
Price: FREE
License:GPL
Download (978KB)
411 downloads
Added: 2008-09-25
15 logic games C 09

15 logic games C 09


This game of fifteen has multiple difficulty more>> This game of fifteen has multiple difficulty levels for you to choose from.In its most famous version, the Fifteen Puzzle, initially known as the Gem Puzzle, Boss Puzzle, Game of Fifteen, Mystic Square, and many others,.Presentation on The Game of Fifteen and Other Fun Problems for the Dalhousie Open House Day. Presentation for the East Coast Combinatorics.The game of Fifteen and Puzzles on Graphs; Weierstrass Product Inequality; Fermats Little Theorem and Eulers Theorem. Problems that allow more than one.use the rearrangement code from this little game of fifteen or not - but The game of FIFTEEN ;;; ;; Remember to choose a language including MrEd..<<less
Download (62.6KB)
Added: 2008-09-07 License: freeware Price:
413 downloads
Oceantiger C# Designer 1.7

Oceantiger C# Designer 1.7


generate & edit C# documents more>> With this source code editor and IDE you will be able to edit and compile C# documents. It has tools for generating C# code either by template, auto completion or by generating with one of the wizards in the program.
The user interface is clear and compact so it easy to learn, and you can have many documents open at a time with tabbed editing.
It also has code folding which makes it easier to view and edit the code.
<<less
Download (1.0M)
Added: 2008-11-03 License: Freeware Price:
377 downloads
 
Other version of Oceantiger C# Designer
Oceantiger C# Designer 1.6C# sourc code editor and IDE with an easy and clear user interface. Oceantiger C# Designer 1.6 - ...With this source code editor and IDE you will be able to edit and compile C
License:Freeware
Download (994KB)
518 downloads
Added: 2008-06-12
Oceantiger C# Designer 1.0C# sourc2 code editor and IDE with an easy and clear user interface. C# sourc2 code editor and IDE with an easy and clear user interface. With this source code editor
License:Freeware
Download (994KB)
747 downloads
Added: 2007-11-18
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5