|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
It's just because Borland sucks. Your code is probably fine.
|
|
|||
|
LOL, thank you.
|
|
|||
|
|
| Sponsored Links |
|
|
|
|||||
|
Quote:
Quote:
All you ever need is gcc and the editor of your choice be it vi, emacs, nano, notepad++, PSpad, etc. |
|
|||
|
I built your code with both.
Quote:
Code:
while(!feof(fpin)){
But I think this may be your problem: Code:
fpout = fopen("1.mid", "wb");
You could really shorten this to Code:
#include <stdio.h>
int main()
{
FILE *fpin = fopen("1.txt", "r");
FILE *fpout = fopen("1.mid", "wb");
if ( fpin && fpout )
{
unsigned int hex;
while ( fscanf(fpin, "%2x", &hex) == 1 )
{
fputc(hex, fpout);
}
fclose(fpin);
fclose(fpout);
}
return 0;
}
Last edited by dcs; 07-15-2008 at 02:41 PM. |
|
|||
|
Is it wrong of me to promote a product that I find quite useful? I dislike Windows's buggyness, but they make some good stuff. (I like free things.)
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Peculiar UI Problem Needs Tackling | adriyel | C# Programming | 2 | 04-06-2008 08:46 AM |
| Problem read pwd protected Access2K dbase - CR9 & VB6 | mrbar | Visual Basic Programming | 2 | 03-10-2008 05:50 AM |
| How to tackle a programming problem? | TcM | General Programming | 10 | 01-07-2008 12:29 PM |
| i have a problem please help me!!!???? | stack | Java Help | 8 | 09-22-2007 04:17 PM |
| [C] Comparison problem | Alhazred | C and C++ | 1 | 08-29-2007 05:58 AM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |