execution small C++ program in UNIX


 
Thread Tools Search this Thread
Top Forums Programming execution small C++ program in UNIX
# 1  
Old 09-22-2007
execution small C++ program in UNIX

Hi my friends

I am beginner unix programmer I have written small c++ program in text editor and I have change it mode to 555 to make it executable file to use it in unix O.P.

#include<iostream.h>

main()
{
cout<<"Hello World";
}

but some syntax erroe came for <<

can any one help me how can I make executable file to use it unix o.p.
# 2  
Old 09-22-2007
You changed what to 555? Have you compiled this?

Code:
$ g++ c.cpp
In file included from /usr/include/c++/3.2.3/backward/iostream.h:31,
                 from c.cpp:1:
/usr/include/c++/3.2.3/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.

# 3  
Old 09-24-2007
execution small C++ program in UNIX

my brother

by this command you can change your file to many kind

chmod 555 {file name}
and I did not compile my program

can you tell me how can I compile my program?
# 4  
Old 09-24-2007
Er, no. You cannot change your file's type. Your file still remains a text file with C++ source code which Unix cannot execute. You have to compile the file. In porter's post, the 'g++ c.cpp' command is compiling the file.

Is this your first C/C++ program on any OS? If you have written any programs before, you would know that you need to compile these before executing them.
# 5  
Old 09-24-2007
Quote:
Originally Posted by bintaleb
can you tell me how can I compile my program?
if the C++ compiler on your system is Gnu C++ then use

Code:
g++ c.cpp -o myprogram

and the executable will be in the file "myprogram", if you look at the file attributes you will notice the compiler (linker actually) has already made the file as an executable (+x).
# 6  
Old 09-26-2007
Yes this is first program in OP because before I wrote my program in programming language with it compiler.

and my friends let me to try your idea and thanks so much for your help please stay with me
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Making a bash script and small C program for a homework assignment

Here's the assignment. I'll bold the parts that are rough for me. Unfortunately, that's quite a bit lol. The syntax is, of course, where my issues lie, for the most part. I don't have a lot of programming experience at all :/. I'd post what I've already done, but I'm so lost I really don't know... (1 Reply)
Discussion started by: twk101
1 Replies

2. Homework & Coursework Questions

Small Grading Program

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: 1. Create a series of commands for a grading program. Create a grades file. Put a "tab" between the name and... (7 Replies)
Discussion started by: Jagst3r21
7 Replies

3. Shell Programming and Scripting

Execution of compressed program

I need UNIX scripts for polling, Uncompressing files and moving files between directory. Also trying to save file paths and any other variables in an independent file (.env) and use these at runtime by executing this file in the main script. (3 Replies)
Discussion started by: new2script
3 Replies

4. Programming

Help with C++ program execution.

//Find the root of the equation (x^2)-2 by bisection method. #include<iostream> using namespace std; double a,x; double f(double x) { return ((x*x)-2); } //Suppose the function is (x*x)-2. void calcx(double a1,double b1) { x =... (2 Replies)
Discussion started by: poonam.gaigole
2 Replies

5. Shell Programming and Scripting

main program is not calling small other programs

I am trying to understand a program in a book and this program suppose to call other programs which are in the same folder, the other programs are called 'lu' and 'add' but for some reason when it gets to the last line of each case to call these programs there is an error message saying ./rolo:... (2 Replies)
Discussion started by: bartsimpsong
2 Replies

6. Programming

Debugging Program during execution

I have made use of 'valgrind' and -finstrument-functions compiler option for debugging / analyzing code. Both the options lets us know the line / file being executed to some extent. Is there a generic way that lets program dump the file:line it is getting executed dumped to a log file during... (3 Replies)
Discussion started by: uunniixx
3 Replies

7. UNIX for Dummies Questions & Answers

Small Program with variables

Hello Geniuses of the unix world. please help, stupid chemist. I have the following script that I need to create a file. Doesnt make sense unless i explain this way: I need to create a file called summary.in I would like all these lines to be inserted however in the command line I would like the... (1 Reply)
Discussion started by: gingburg
1 Replies

8. Programming

A program to trace execution of another program

Hi, I wanted to know if i can write a program using switches and signals, etc to trace execution of other unix program which calls c program internally. If yes how? If not with signals and switches then are there any other methods apart from debugging with gdb/dbx. (3 Replies)
Discussion started by: jiten_hegde
3 Replies

9. Linux

unix command for multifile program execution

how can I compile and execute multifile program in unix os.:o (0 Replies)
Discussion started by: alokmishra8
0 Replies

10. Shell Programming and Scripting

help me do a small program!! THX

Write a shell script (to run on the Bourne shell) that runs an infinite loop to check every 5 seconds to report on who logs into and who logs out of a UNIX system. Without loss of practical significance of this little utility, we can ignore multiple logins from the same user during a time period of... (1 Reply)
Discussion started by: lydragon
1 Replies
Login or Register to Ask a Question