Why is this program erroneously rejected by three C++ compilers?

C++Visual C++Compiler ErrorsClang

C++ Problem Overview


I am having some difficulty compiling a C++ program that I've written.

This program is very simple and, to the best of my knowledge, conforms to all the rules set forth in the C++ Standard. I've read over the entirety of ISO/IEC 14882:2003 twice to be sure.

The program is as follows:

enter image description here

Here is the output I received when trying to compile this program with Visual C++ 2010:

c:\dev>cl /nologo helloworld.png
cl : Command line warning D9024 : unrecognized source file type 'helloworld.png', object file assumed
helloworld.png : fatal error LNK1107: invalid or corrupt file: cannot read at 0x5172

Dismayed, I tried g++ 4.5.2, but it was equally unhelpful:

c:\dev>g++ helloworld.png
helloworld.png: file not recognized: File format not recognized
collect2: ld returned 1 exit status

I figured that Clang (version 3.0 trunk 127530) must work, since it is so highly praised for its standards conformance. Unfortunately, it didn't even give me one of its pretty, highlighted error messages:

c:\dev>clang++ helloworld.png
helloworld.png: file not recognized: File format not recognized
collect2: ld returned 1 exit status
clang++: error: linker (via gcc) command failed with exit code 1 (use -v to see invocation)

To be honest, I don't really know what any of these error message mean.

Many other C++ programs have source files with a .cpp extension, so I thought perhaps I needed to rename my file. I changed its name to helloworld.cpp, but that didn't help. I think there is a very serious bug in Clang because when I tried using it to compile the renamed program, it flipped out, printed "84 warnings and 20 errors generated." and made my computer beep a lot!

What have I done wrong here? Have I missed some critical part of the C++ Standard? Or are all three compilers really just so broken that they can't compile this simple program?

C++ Solutions


Solution 1 - C++

Originally from Overv @ reddit.

Solution 2 - C++

Try this way:

enter image description here

Solution 3 - C++

Your < and >, ( and ), { and } don't seem to match very well; Try drawing them better.

Solution 4 - C++

In the standard, §2.1/1 specifies:

> Physical source file characters are mapped, in an implementation-defined manner, to the basic source character set (introducing new-line characters for end-of-line indicators) if necessary.

Your compiler doesn't support that format (aka cannot map it to the basic source character set), so it cannot move into further processing stages, hence the error. It is entirely possible that your compiler support a mapping from image to basic source character set, but is not required to.

Since this mapping is implementation-defined, you'll need to look at your implementations documentation to see the file formats it supports. Typically, every major compiler vendor supports (canonically defined) text files: any file produced by a text editor, typically a series of characters.


Note that the C++ standard is based off the C standard (§1.1/2), and the C(99) standard says, in §1.2:

> This International Standard does not specify
> — the mechanism by which C programs are transformed for use by a data-processing system;
> — the mechanism by which C programs are invoked for use by a data-processing system;
> — the mechanism by which input data are transformed for use by a C program;

So, again, the treatment of source files is something you need to find in your compilers documentation.

Solution 5 - C++

You could try the following python script. Note that you need to install PIL and pytesser.

from pytesser import *
image = Image.open('helloworld.png')  # Open image object using PIL
print image_to_string(image)     # Run tesseract.exe on image

To use it, do:

python script.py > helloworld.cpp; g++ helloworld.cpp

Solution 6 - C++

You forgot to use Comic Sans as a font, that's why its erroring.

Solution 7 - C++

I can't see a new-line after that last brace.

As you know: "If a source file that is not empty does not end in a new-line character, ... the behavior is undefined".

Solution 8 - C++

This program is valid -- I can find no errors.

My guess is you have a virus on your machine. It would be best if you reformat your drive, and reinstall the operating system.

Let us know how that works out, or if you need help with the reinstall.

I hate viruses.

Solution 9 - C++

I've found it helps to not write my code on my monitor's glass with a magic marker, even though it looks nice when its really black. The screen fills up too fast and then the people who give me a clean monitor call me names each week.

A couple of my employees (I'm a manager) are chipping in to buy me one of those red pad computers with the knobs. They said that I won't need markers and I can clean the screen myself when it's full but I have to be careful shaking it. I supposed it's delicate that way.

That's why I hire the smart people.

Solution 10 - C++

File format not recognized You need to properly format your file. That means using the right colors and fonts for your code. See the specific documentations for each compiler as these colors vary between compiler ;)

Solution 11 - C++

You forgot the pre-processor. Try this:

pngtopnm helloworld.png | ocrad | g++ -x 'c++' -

Solution 12 - C++

Did you handwrite the program and then scan it into the computer? That is what is implied by "helloworld.png". If that is the case, you need to be aware that the C++ standard (even in its newest edition) does not require the presence of optical character recognition, and unfortunately it is not included as an optional feature in any current compiler.

You may want to consider transposing the graphics to a textual format. Any plain-text editor may be used; the use of a word processor, while capable of generating a pretty printout, will most likely result in the same error that you get while trying to scan.

If you are truly adventurous, you may attempt to write your code into a word processor. Print it, preferably using a font like OCR-A. Then, take your printout and scan it back in. The scan can then be run through a third-party OCR package to generate a text form. The text form may then be compiled using one of many standard compilers.

Beware, however, of the great cost of paper that this will incur during the debugging phase.

Solution 13 - C++

Draw the include below to make it compile:

#include <ChuckNorris>

I hear he can compile syntax errors...

Solution 14 - C++

Unfortunately, you have selected three compilers that all support multiple languages, not just C++. They all have to guess at the programming language you used. As you probably already know, the PNG format is suitable for all programming languages, not just C++.

Usually the compiler can figure out the language itself. For instance, if the PNG is obviously drawn with crayons, the compiler will know it contains Visual Basic. If it looks like it's drawn with a mechanical pencil, it's easy to recognize the engineer at work, writing FORTRAN code.

This second step doesn't help the compiler either, in this case. C and C++ just look too similar, down to the #include. Therefore, you must help the compiler decide what language it really is. Now, you could use non-standard means. For instance, the Visual Studio compiler accepts the /TC and /TP command-line arguments, or you could use the "Compile as: C++" option in the project file. GCC and CLang have their own mechanisms, which I don't know.

Therefore, I'd recommend using the standard method instead to tell your compiler that the code following is in C++. As you've discovered by now, C++ compilers are very picky about what they accept. Therefore the standard way to identify C++ is by the intimidation programmers add to their C++ code. For instance, the following line will clarify to your compiler that what follows is C++ (and he'd better compile it without complaints).

// To the compiler: I know where you are installed. No funny games, capice?

Solution 15 - C++

Try this one:

Do you see the dinosaur in the space shuttle?

Solution 16 - C++

Is your compiler set in expert mode?! If yes, it shouldn't compile. Modern compilers are tired of "Hello World!"

Solution 17 - C++

OCR Says:

N lml_�e <loJ+_e__}

.lnt Mk.,n ( ln+ _rSC Lhc_yh )
h_S_
_l

s_l . co__ <, " H llo uo/_d ! '` << s l� . ena_ .
TP__rn _ |
_|

Which is pretty damn good, to be fair.

Solution 18 - C++

> helloworld.png: file not recognized: File format not recognized

Obviously, you should format your hard drive.

Really, these errors aren't that hard to read.

Solution 19 - C++

I did convert your program from PNG to ASCII, but it does not compile yet. For your information, I did try with line width 100 and 250 characters but both yield in comparable results.

   `         `  .     `.      `         ...                                                         
   +:: ..-.. --.:`:. `-` .....:`../--`.. `-                                                         
           `      `       ````                                                                      
                                                                      `                             
   ` `` .`       ``    .`    `.               `` .      -``-          ..                            
   .`--`:`   :::.-``-. : ``.-`-  `-.-`:.-`    :-`/.-..` `    `-..`...- :                            
   .`         ` `    ` .`         ````:``  -                  ` ``-.`  `                            
   `-                                ..                           ``                                
    .       ` .`.           `   `    `. ` .  . `    .  `    . . .` .`  `      ` ``        ` `       
           `:`.`:` ` -..-`.`-  .-`-.    /.-/.-`.-.  -...-..`- :```   `-`-`  :`..`-` ` :`.`:`- `     
            ``  `       ```.      ``    ````    `       `     `        `    `         `   `   .     
            : -...`.- .` .:/ `                                                                      
    -       `             `` .                                                                      
    -`                                                                                              
    `                                                                                               

Solution 20 - C++

The first problem is, that you are trying to return an incorrect value at the end of the main function. C++ standard dictates that the return type of main() is int, but instead you are trying to return the empty set.

The other problem is - at least with g++ - that the compiler deduces the language used from the file suffix. From g++(1):

> For any given input file, the file > name suffix determines what kind of > compilation is done: > > file.cc file.cp file.cxx file.cpp file.CPP file.c++ file.C > > C ++ source code which must be preprocessed. Note that in .cxx, the > last two letters must both be literally x. Likewise, .C refers to a > literal capital C.

Fixing these should leave you with a fully working Hello World application, as can be seen from the demo here.

Solution 21 - C++

Your font sucks, how should a parser ever be able to read that? Take a calligraphy course.

Solution 22 - C++

Your compilers are expecting ASCII, but that program is obviously written using EBCDIC.

Solution 23 - C++

You're trying to compile an image.

Type out what you've hand written into a document called main.cpp, run that file through your compiler, then run the output file.

Solution 24 - C++

You need to specify the precision of your output preceded by a colon immediately before the final closing brace. Since the output is not numeric, the precision is zero, so you need this-

:0}

Solution 25 - C++

add :

using namespace std;

right after include :P:D

Solution 26 - C++

Seems that your compiler doesn't support files in such hmm... encoding. Try to convert it to ASCII.

Solution 27 - C++

The problem lies with the syntax definition, try using ruler and compasses for a more classical description!

Cheers,

Solution 28 - C++

Try switching input interface. C++ expects a keyboard to be plugged in to your computer, not a scanner. There may be peripherals conflict issues here. I didn't check in ISO Standard if keyboard input interface is mandatory, but that is true for all compilers I ever used. But maybe scanner input is now available in C99, and in this case your program should indeed work. If not you'll have to wait the next standard release and upgrade of compilers.

Solution 29 - C++

You could try different colors for brackets, maybe some green or red would help ? I think your compiler can't rcognize black ink :P

Solution 30 - C++

Am I the only one who can't recognize the character between 'return' and the semicolon? That could be it!

Solution 31 - C++

Run the compiler through OCR. It might solve the compatibility issue.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJames McNellisView Question on Stackoverflow
Solution 1 - C++SvenView Answer on Stackoverflow
Solution 2 - C++BenoitView Answer on Stackoverflow
Solution 3 - C++Bala RView Answer on Stackoverflow
Solution 4 - C++GManNickGView Answer on Stackoverflow
Solution 5 - C++sje397View Answer on Stackoverflow
Solution 6 - C++bl00dshooterView Answer on Stackoverflow
Solution 7 - C++Michael BurrView Answer on Stackoverflow
Solution 8 - C++Jerry AsherView Answer on Stackoverflow
Solution 9 - C++the Tin ManView Answer on Stackoverflow
Solution 10 - C++helloworld922View Answer on Stackoverflow
Solution 11 - C++Andrew CooperView Answer on Stackoverflow
Solution 12 - C++Kevin LacquementView Answer on Stackoverflow
Solution 13 - C++GrofitView Answer on Stackoverflow
Solution 14 - C++MSaltersView Answer on Stackoverflow
Solution 15 - C++Chris CudmoreView Answer on Stackoverflow
Solution 16 - C++zamanbakshiView Answer on Stackoverflow
Solution 17 - C++Robin DuckettView Answer on Stackoverflow
Solution 18 - C++Chris CudmoreView Answer on Stackoverflow
Solution 19 - C++YvesView Answer on Stackoverflow
Solution 20 - C++Antti LaineView Answer on Stackoverflow
Solution 21 - C++Frank OsterfeldView Answer on Stackoverflow
Solution 22 - C++oosterwalView Answer on Stackoverflow
Solution 23 - C++WilliamView Answer on Stackoverflow
Solution 24 - C++MikeJ-UKView Answer on Stackoverflow
Solution 25 - C++SpyrosView Answer on Stackoverflow
Solution 26 - C++Kirill V. LyadvinskyView Answer on Stackoverflow
Solution 27 - C++quarkoniumView Answer on Stackoverflow
Solution 28 - C++krissView Answer on Stackoverflow
Solution 29 - C++lotharView Answer on Stackoverflow
Solution 30 - C++techolicView Answer on Stackoverflow
Solution 31 - C++James P.View Answer on Stackoverflow