C++ :: Make Command In Bash Terminal

Nov 27, 2014

I've recently refreshed my mac by reinstalling the operating system. Uploaded the previous C and C ++ source scripts I was working with but when I go to compile them through the bash terminal it says command not found? Im not sure whats going because I thought that all the gcc files were already available? What am I messing here.

View 5 Replies


ADVERTISEMENT

C++ :: Make A Terminal For Website And BHXSpectre Recommended Cgi?

Nov 22, 2013

so i want to make a terminal for my website and BHXSpectre recommended cgi (which i love... c++ web design. just one more reason to not use any other language). anyways, im wondering how would i generate the html for the base of the terminal? ie just the window that i will be writing to

View 2 Replies View Related

C++ :: Make Terminal Screen Bigger In NCurses Program?

Jun 29, 2013

I wanted to make the terminal screen bigger in my NCurses program. Let's say if the defaults are 25 LINES and 80 COLS, I want to set them to 40 LINES and 120 COLS.

I've tried resizing all windows, but that did not work, because the actual terminal (console) was not resized. Then I found functions resizeterm and newterm, but they did not work. As far as my understanding goes resizeterm only updates NCurses information with the current configuration, while the window itself is not actually modified.

NCurses man page wrote:The function resizeterm resizes the standard and current windows to the specified dimensions

If I haven't made myself clear ( I sometimes make a mess of things... ), another example would be that I want my program to be fullscreen when I start it. Is this possible? It should be, I found a fullscreen NCurses program once, but the code was too confusing for me to understand.

Having read about things like SIGWINCH, I assume you must define a method for resizing the terminal screen yourself, I don't know where to start?

View 11 Replies View Related

C++ :: How To Make Dll And Lib Using G++ Command Prompt

Mar 6, 2015

1. What is dll and lib?

2. How do I make dll and lib using g++ command prompt?

Also, how do I link libraries using g++?

Any good websites that covers my questions,

View 1 Replies View Related

C++ :: Make Program That Has GUI Other Than Command Prompt?

Nov 22, 2013

I am looking to make a program for C++ that has a GUI other than command prompt. The program I am trying to create will ask certain questions and display the results at the end after all questions are asked and have 2 copies of the results one over the other that can be printed as a receipt. Basically I am wondering can I do this using C++. Also I want another GUI other than command prompt as well. Something close to what windows uses if possible.

View 5 Replies View Related

C/C++ :: Make Basic Snake Game Using Command Window And Screen Refreshes?

Apr 15, 2015

I am trying to make a basic Snake game using the command window and screen refreshes. So far I have a board, snake, food, and no walls. Basically I have it so the snake moves like the traditional snake in the game, when it eats the food once it grows. However when it eats the food a second time the game crashes. I think I have narrowed the issue down to the grow array that I have (below) but I am not sure if the issue could be a result of something else.

Grow Array

cord growArray (cord *p_values, int *size)
{
*size = *size + 1;
cord *p_new_values = new cord[ *size ];

[Code]....

View 7 Replies View Related

C++ :: How To Use Next Bash Function

Jul 21, 2014

I'm new in C++ and sure - I'm learning it.

But - just interesting - how next bash function can't looks like in C++?

This code used to check array of system global variables:

Code:

#!/usr/bin/env bash
# defining and fill array
variables=( [1]=$sysvar1
[2]=$sysvar2
[3]=$sysvar3
[4]=$sysvar3
)
# function
checkvars () {

[Code]...

# start function with array as argument checkvars "${variables[@]}" It's simple enough and I hope C++ code will not be too complicated for me to understand it :-)

P.S. Goal of post - not really made some job for me - but show an example of some C++ code, which I'll can sort out and compare with bash code. Some explanations will be nice.

View 4 Replies View Related

C++ :: Echo Meaning In Bash Scripting

Apr 1, 2014

What does echo in a bash script mean?

The code I'm trying to understand says:

for((m=0; m<1;m++))
do
#assign the correct mechanism to run
RMFilename=${Mechanisms[m]}

[Code] .....

View 3 Replies View Related

C++ :: Execute Command In Command Prompt From Specific Path

Feb 15, 2013

I am facing a problem in C++,I want to execute a command in Command prompt from a specific path.I am able o select a path and execute cmd.exe using the function ShellExecute but the problem is after selecting the path I am not able to execute the command, the command is appearing on another command prompt.

View 4 Replies View Related

C++ :: How To Hide Console Or Terminal

Jul 2, 2013

I want to hide a terminal appliction or console application without using WinAPI programming or <windows.h> or something like "ShowWindow(hwnd_win,SW_HIDE);

View 19 Replies View Related

C++ :: Can't Open A Directory In Terminal

Jan 12, 2015

Taking a OS course and my professor gave us files to reference in a directory located at ~agw/class/os/share/proj3. But when I typed this into the terminal I keep getting a permission denied error message.

[lastname@erdos ~]$ ls
dead.letter Desktop Documents Downloads Music Pictures private Public public_html Templates Videos
[lastname@erdos ~]$ ~agw/class/os/share/proj3
/u/sobolev/agw/class/os/share/proj3: Permission denied.
[lastname@erdos ~]$

I'm not sure what I am doing wrong. Ive opened shared directories for this class before and had no issues.

View 1 Replies View Related

C++ :: Cannot Open A Directory In Terminal

Dec 9, 2013

Taking a OS course and my professor gave us files to reference in a directory located at ~agw/class/os/share/proj3. But when I typed this into the terminal I keep getting a permission denied error message.

[lastname@erdos ~]$ ls
dead.letter Desktop Documents Downloads Music Pictures private Public public_html Templates Videos
[lastname@erdos ~]$ ~agw/class/os/share/proj3
/u/sobolev/agw/class/os/share/proj3: Permission denied.
[lastname@erdos ~]$

I've opened shared directories for this class before and had no issues.

View 2 Replies View Related

C :: Check How Many Colors Terminal Supports

Feb 17, 2013

I'm generating all ncurses color pairs like this

Code:

void generate_all_color_pairs(){ int foreground;
int background;
int i = 0;
for(foreground=0; foreground<8; foreground++){
for(background=0; background<8; background++){
i++;

[code]....

but according on several sources, some terminals suport more colors.Is there any way to determine how many colors the current terminal supports?

View 3 Replies View Related

C/C++ :: Running Multiple Terminal In Xcode

Oct 5, 2014

I am using Xcode to do c++ programming and I have a c++ code, with different input arguments. I want to achieve that in Xcode, I could run multiple simultaneous running of my c++ code. However, the current problem is that once one code finishes, its terminal window automatically closed and I do not have time to look at its result. Thus computer time is wasted. Is there a way to run multiple same c++ code with different arguments input?

View 6 Replies View Related

C++ :: Compile With Terminal From MyProject Folder?

Apr 6, 2015

my folder structure looks like this:

Code:

MyProject
| |
header source
| |
Dog.h,Functions.h Functions.cpp, Dog.cpp, main.cpp

How can I compile and run this program (what do I have to type in terminal) - I would like to compile and run it from MyPoject's directory

Code:

cd MyProject

View 14 Replies View Related

C/C++ :: Creating Two Dimensional Terminal Based Game?

Apr 4, 2014

i am working on class project in which i have to save the tank from canon....imy tank is moving only when i press the moving key.. and after that i see blank screen what should i do to run my process when i am not pressing moving keys....

View 8 Replies View Related

C++ :: Create Process And Assign Pipe Terminal Like Stoudt

May 30, 2014

I have study that create a pipe and set a terminal of this pipe like a stdout of a process is a way to implement inter process comunication, but how can i do it in c++?

View 2 Replies View Related

C :: Count Lines In Input And Display Output In Terminal When Program Executed After Compilation

Feb 4, 2013

Code:

#include <stdio.h>
main() {
int c, n1;
n1 = 0;
while ((c = getchar()) != EOF)
if (c == '')
++n1;
printf("%d", n1);
}

I have a more complicated program I'm wishing to have display the output, however, to save some time I'm using an example of a shorter version. count the lines in input and display the output in terminal when ./program is executed after compilation. To count and compute lines, words and within arrays.

View 4 Replies View Related

C++ :: Absolute Path Reference - Open File And Print Contents To Terminal Window

May 12, 2014

I am trying to open a file and print the contents of the file to the terminal window. It works when I put the file right in the directory with the Solution but not if the file is out on my desktop and I use the full path. Here is the code:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int OpenFile(){
fstream SampleFile;

[Code] .....

View 5 Replies View Related

C++ :: Chain Of Command?

Jan 12, 2014

a) Write a C-program that creates a chain of 10 processes and prints out their process ids and relationships. For example, process 1 is the parent of process 2, process 2 is the parent of process 3, process 3 is the parent of 4 and so on. Each child has to print out all her ancestors identified by the process ids.

b) Write a C-program that creates a fan of 10 processes. That is, process 1 is the parent of prcocesses 2, 3, 4, 5, 6 and so on.

I'm assuming that he means c++ since that's what we've been using. how to start this and what it means? Or where I can learn how to do this.

View 2 Replies View Related

C :: How To Implement A Generic Command

Jun 11, 2013

I have to make a prgrama using the C programming language that is able to read several lines of commands entered by the user and interpret it as a command to run.

I have to implement the following command:

a) Command generic - program should be able to read any one command and execute the same command on the operating system through primitives for implementing generic processes (eg "ls-l/etc").

View 1 Replies View Related

C :: Command Line Arguments

Jul 28, 2013

I am using visual studio 2010 c++ express for C/C++ programming but is novice here to take command line arguments..i did went to project->properties->debugging and specified there the command line arguments but it didnt work..i think i need to know the format to enter the arguments.

View 9 Replies View Related

C :: Adding A Command To Program

Dec 2, 2013

I'd like to add a 'command' to my C program. For example if someone types 'get out' it closes the shell and quits. I want the 'get out' command to work like 'exit'. How do I write a code like this

Code:
char entry[15];
scanf("%[^
]", &entry);
if (entry = "get out")
do "exit";

View 14 Replies View Related

C++ :: Command To Get A Line From The User

Sep 16, 2014

int get_command_line (char * sa) {
char * s;
char * l = fgets(s, 300*5, stdin);
int i = 0;
int j;
int n;

[Code] ....

The aim is to have the function return the number of arguments made after assigning each of the arguments to a c string stored in an array of five pointers. This is how I declare this:

int main(void)
int n;
char s0[300];
char s1[300];
char s2[300];
char s3[300];

[Code] ....

View 1 Replies View Related

C++ :: Using File From Command Line

Apr 13, 2013

I'm trying to read in a file specified in the command line but I'm having some trouble. The command line entry specifies the inputfile preceded by '<' and the output file preceded by '>' like so

./program -v < input_file.cmd > output_file.cmd

This is what I've got so far.

int main(int argc,char* argv[]){
string strv="-v";
string input="<";
string output=">";
string str;
string input_file;
const char* in=input_file.c_str();

[Code] .....

This compiles ok, but when i run it using :

./program -v < test1.cmd

I get a segfault, if i cout argc it returns '2' where i would expect for this command line entry, I 'd get 4.

I'm not yet outputting to file, just to the screen so im not specifying an output file yet.

View 8 Replies View Related

C# :: How To Send A Command To Another Form

Oct 12, 2014

I've been trying to send a command to another form, but it didn't work. Here's what I've done:

Form1:
I have a listview.

Form2:
I have a textbox and button.

I want to write something on the textbox from Form2, click on the button and let it appear on the listview on Form 1.

Here's my code, but doesn't work />

Form1
public void UpdateListBox(string data) {
ListViewItem lvi = new ListViewItem(data);
listView1.Items.Add(lvi);
}

Form2
private void button1_Click(object sender, EventArgs e) {
Form1 frm1 = new Form1();
frm1.UpdateListBox(textBox1.Text);
}

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved