Tagged Questions
3
votes
2answers
79 views
Printf with carriage return
printf("Hello%cWorld\n", 0x0d);
Outputs:
World
Because 0x0D moves the cursor to the beginning of the line
Can I trust that all terminals have this behavior?
-4
votes
1answer
44 views
Linux Terminal Input/Output C program
I am having some doubts about Linux Terminal output's
in a c program i made a
printf("Write A Message");
fgets(buffer,BUFSIZ,stdin);
which waits for a Message to be typed from keyboard
I have ...
0
votes
3answers
39 views
Run multiple executables all at once
I have a C Sockets application, different executables of which must run at same time all at once, preferably in different terminals. How do I do it?
For example, there are four exes, ./one, ./two, ...
0
votes
3answers
38 views
Determining button boundries with terminal IO in non-canonical mode
I'm trying to understand how terminal I/O works.
When a terminal is placed in non-canonical mode like so (missing error handling):
struct termios term_original, term_current;
tcgetattr(STDIN_FILENO, ...
1
vote
1answer
58 views
(Mac OSX) Adding libraries to C -specifically gnuplot
I am a begineer trying to get code in C. I am working on a Mac and using xcode. My only past experience has been with java using eclipse and everything was pretty straight forward. I have almost no ...
0
votes
1answer
32 views
Compiler Error in ptmconvert (C/C++)
I'm trying to compile some mixed C++ and C code on a mac in the terminal for an image converter, and I'm running into several errors. The imager converter code is available here:
...
0
votes
0answers
30 views
Separate STDOUT noise from ncurses
I am trying to run an ncurses GUI application on an ARM board. I am running it using the serial console ttyAMA0 port. But when I run the ncurses program, the other processes running in the background ...
0
votes
0answers
28 views
Passing chars from keyboard from one process to another with pipe
im trying make a game that consist 2 C files.
The game need to be running over linux terminal.
The game is tetris game , 1 C file is the keyboard listener and one is the view.
The first C file ...
1
vote
1answer
39 views
Struggling to comunicate between processes with signals
im trying to create a game in C under linux terminal.
I need to create a tetris game that consists of two c files,
One C file create execute file (a.out) and the other create (draw.out).
The first ...
0
votes
4answers
32 views
Output not displayed with usleep until a line break is given
I'm trying to program a simple "typewriter" effect in C, where text appears one letter at a time with a delay. Here's the function I have:
#include <stdio.h>
#include <unistd.h>
void ...
0
votes
3answers
51 views
How to let terminal refresh without printing new stuff in C
I want to make a more dynamic interface rather than print out a whole new page every time but do not know how to implement it. For example, if we have a download bar that goes from 0% to 100%, I want ...
0
votes
1answer
51 views
Reading the Device Status Report ANSI escape sequence reply
I'm trying to retrieve the coordinates of cursor in a VT100 terminal using the following code:
void getCursor(int* x, int* y) {
printf("\033[6n");
scanf("\033[%d;%dR", x, y);
}
I'm using the ...
0
votes
1answer
57 views
Segmentation Fault on strtol with in pthread function
I am getting a "Segmentation Fault 11" on the following block of code inside of a pthread:
void *func(void *len){
char *temp = len;
size = (int) strtol(temp, (char **)NULL, 10); // this ...
-2
votes
1answer
58 views
GDB With a coredump file in linux
I just got a core-dump file in linux with
ulimit -c unlimited
how can I attach gdb with it
I need to give command line arguments with it.
sample executation:
./my_prog arg
Help me to get into ...
-5
votes
1answer
44 views
Break string into command and arguments in C [closed]
Does anyone know where I can find code to break a C style string into a command and arguments like the compiler does for int main()?
Edit: I need it to acknowledge quotes as well
0
votes
2answers
117 views
(unix/C) “stty: stdin isn't a terminal” when using system() function
We're reading a file from stdin into file_buffer, and then stepping into a method more.
As soon as we use system("stty cbreak -echo");, the output prints "stty: stdin isn't a terminal" and doesn't ...
0
votes
2answers
107 views
How to instantly react to key pressing in C?
I'm trying to call a function when a user presses a key, somewhat like sending a signal with Ctrl-C. The idea is to be doing something, say in a while loop, and actively listen for, say, the 'f' key ...
2
votes
1answer
95 views
How to feed my C Program in Terminal files for it to sequentially display?
I have created a program that sequentially displays on screen the contents of all of the files listed in the command line.
However, when I run it in terminal I can't actually get it to open any files ...
0
votes
0answers
103 views
termios messing up stdout in terminal after exiting although old attributes are reset
I'm using termios in a serial logging application, the application reads the serial port and saves data in a file. It also accepts inputs from standard input and sends it to the serial port.
The ...
1
vote
4answers
116 views
Get in which terminal column I'm writing
In my C program I would like to know where my cursor is located in terminal. For example, another program could have written something before mine and I would like to know how much space is left ...
0
votes
3answers
145 views
when running a compiled gcc file in terminal nothing happens
i have ubuntu 64bit installed, and when i compile c files using the flags:
gcc -g -m32 -ansi -Wall -c -o *.o *.c
it compile the files but when i try to run them in terminal nothing happens.
so i ...
0
votes
0answers
39 views
my pseudo-terminal lost some characters and have some other strange errors?
I wrote a pseudo-terminal to have a test.but the result is not what I expect.It have some error ,such as losing a character or a whole sentence before a specified word.I am so confused about these ...
-8
votes
2answers
62 views
2
votes
1answer
58 views
cat terminal , check usb removed (perror)?
For an assignment we have to create C program that functions similar to the cat command. The first hand-in requires it to mimic very minimal operations of cat....i.e print to output, redirect. The ...
-1
votes
1answer
60 views
iPhone compiler fails [closed]
I cant say I'm very experienced in programming, but while trying I got the error:
configure: error: configure cannot run C compiled programs
I'm not even sure if this is possible on an iphone but i ...
0
votes
3answers
149 views
Running C scripts with terminal instead of Xcode
Currently I am developing a couple of C programs on my mac using Xcode. There however is 1 problem. My study requires me to use some sort of input field through the coding. So for instance if the ...
1
vote
3answers
71 views
How to have full control over terminal with networking?
Is there a way to have full control over the terminal via networking. For example, I have a server and client written in C, I want to send a command like rm file or cd directory to the server (server ...
0
votes
2answers
153 views
Getting all output from terminal in C
I am currently working on a ssh program and I want to be able to have full control over the terminal via networking. My question is, if I send a command to the server to run in the terminal, how do I ...
0
votes
1answer
84 views
Process sometimes suspends when writing to emacs
I am currently doing a mainly-for-fun project, trying to code a simple terminal emulator. So far, what I want to do is to just have a “proxy process” which only forwards terminal commands. This seems ...
1
vote
4answers
83 views
Terminal will not use updated a.out, how do I fix that?
I'm compiling a C file on Terminal on my mac, but when I run the a.out file, it will only compile an old version of my file.
For example, let's say my C file is made to print out "Hello, World!", I ...
0
votes
1answer
164 views
Encapsulating one-line AppleScript with C system() call using fgets() and echo
If I have condensed an AppleScript into one line, how can I encapsulate it to run in an echo system call from a C program? All the formatting I have tried result in errors: (single quotes, double ...
1
vote
2answers
160 views
Debugging C code with gdb
This is a homework assignment, I just want help with gdb, not specific answers.
I have no experience with gdb whatsoever and little terminal experience. I followed a simple example online to debug ...
1
vote
0answers
23 views
How to read in result of command processor using C? [duplicate]
Possible Duplicate:
Capturing stdout from a system() command optimally
I'm trying to call the function system() and read in what ever output it would produce on the command processor.
...
2
votes
2answers
98 views
Who echos the characters in terminal?
Lets look at the following code:
int main(void)
{
char c;
while ((c = getchar()) != EOF)
putchar(c);
return (0);
}
This program echo's ...
0
votes
0answers
86 views
Update three separate lines in a loop in console using ncurses
I want to update three different lines in a virtual term simultaneously, i.e. in a loop they will be constantly updated and they are three separate lines. Now of course the line are separated by \n s ...
0
votes
1answer
64 views
Add directory to the PATH for execvp()
I am writing a small console-like program in C, along with implementations for ls, tac and dir.
I use execvp() function to override the forked children of the process, but when the user inserts one ...
1
vote
2answers
78 views
How do I not type the full path to gcc and the MacOSX sdk in terminal?
In terminal every time I want to compile a C file I have to type out the full path to both the gcc alias and the MacOSX SDK. For example, to run a main.c fine I would type
$ cd /Users/Will/Desktop/C ...
1
vote
1answer
308 views
C code won't compile in mac Terminal.
Whenever I run $ /developer/usr/bin/gcc -v main.c -o main in Terminal, I get the following error: stdio.h: No such file or directory.
Here is the main.c file
#include <stdio.h>
int ...
2
votes
1answer
165 views
ISP error: 'DDRD' undeclared (first use in this function)
I have a problem for my Arduino as ISP: I have followed the tuto of Michael Holachek with this video http://michael.holachek.com/2012/09/avr-programming/ and when I write in the Terminal :
"make ...
0
votes
2answers
143 views
CommandLine Arguments not working C
I am trying to pass File1.txt ">" File2.txt as terminal arguments to my program in order to override the cat command. But for some reason, the program is not working. Although the argc is 4 in ...
2
votes
2answers
106 views
fork() and stderr with terminal
I use fork() in order to make different proccesses running and printing a simple message.The result of the code counfuses me though.. Take a look at the code:
#include <stdlib.h>
#include ...
3
votes
2answers
254 views
How to display Xcode output on Terminal?
How do I run a C programming language from Xcode on terminal? Please help me with this by answering a step by step procedure in doing this. Thanks.
Version 10.7.5 on a Macbook Air.
3
votes
4answers
147 views
how to store results of ./a.out to a text file
I am wondering if there is any way to store the results of my program into a text file. I know you can just do something like ./a.out > output.txt but for my program, after I type ./a.out I am ...
1
vote
1answer
245 views
Output from printf does not show in cygwin terminal? [closed]
I wrote a very small program called cow.c. When I try to run it from the cygwin terminal after compiling, I get no output. There are no errors on compile.
#include <stdio.h>
int main() {
...
7
votes
1answer
145 views
C - How to suppress a sub function's output?
I want to call bar() in foo(), bar() will change some global variables' values(this is what I want), but meanwhile produce some output( I dont' want any output);
void foo()
{
//I have tried:
...
0
votes
1answer
224 views
Having Trouble Creating a Makefile in C
Here is the error I receive when creating a makefile from the Terminal in Ubuntu:
~/Desktop/a4 $ make
cc Makefile.c -o Makefile
Makefile.c:1:5: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ...
0
votes
3answers
185 views
Command Line Arguments not getting executed in C
I am trying to pass arguments to execl() function for ls command. But when I pass
/bin/ls -l -a
as arguments to my program, the execl() function doesn't recognise the last two arguments. Why is ...
3
votes
2answers
99 views
How do i redirect code from terminal to a drawing app?
I am trying to create a simple program using C, that reads data from a text file and then creates a graph based on that data. I am running UNIX.
Half of my code is meant to use the terminal for ...
0
votes
1answer
88 views
copy text from terminal to memory
I know it will appear ugly, but, suppose a simple program like:
int main(void)
{
int line=0, column=1;
char c;
system("clear");
printf("0123\n4567\n");
getprintedchar(column, line, ...
4
votes
1answer
164 views
How to detach program from terminal and to attach it back?
I am working on an embedded project, where I need a program without external dependencies that works like screen or tmux. These two programs are not good because they need other libraries.
Since I ...
