Archive for the 'c' Category

04
May
08

CONVERSUB

CONVERSUB converts subtitle files in either the SRT or SUB format to the opposite format.
The result of this conversion depends on the number of frames per second that the user indicates on the command line. author: ezequielher

For compile you need set Makefile on command line

Download this Source Code

03
May
08

HEXADECIMAL CONVERTER

This program reads a text file and displays the contents on screen in encrypted hexademal format.
It can also be used to decrypt hexadecimal format to human-readable format. author: ezequielher

You need set gcc on command line for compile: Download this Source Code

03
May
08

COMPILADOR

COMPILADOR is a compiler for arithmetic expressions. It consists of a lexical and syntactic analyzer for a matrix of precedence. This program will check if the expression is well formed and then evaluates it. author: ezequielher

Compile using command Makefile of Linux : Download this Source Code

02
May
08

LEXICAL ANALIZER

This source checks if the operations arithmetics are well made.
It uses an matrix of transitions to know if 2 consecutive characters have consistency or not. Then it revised that all characters written by the user are permitted, (only allow digits, comma, parentheses & operations) Compilate using command gcc of Linux. author: ezequielher

prompt/> gcc lexico.c -o programa
prompt/> ./programa ‘2*3-(56*8.3)’
Show this Source code

02
May
08

NEWSPAPERS

This source code will calculate the monthly value buy a newspaper every day assuming that prices change depending on the day of the week. You can change prices at this source, depending on what you charge to you. For compile that source you need set command ‘gcc’

Show this Source Code

02
May
08

Encryption

Encryption program that uses as a basis opposed to the letter of the alphabet. An example might be
Hello baby, how are you? = Svool yzyb, sld ziv blf?
You need use command gcc for compile this source. author: ezequielher
Show the original / encrypted Source Code
02
May
08

FILE COPY

The example is very basic: it shows you how to create an archive and make an exactly copy of another file that already exists. You need use command gcc. author: ezequielher

Show this Source Code