UNIX/Linux Programming

by admin
news Welcome to this board! closed
 
Welcome to the forum for UNIX and Linux programmers in C++.com! In this forum, users can to talk ...
[no replies]
post shell command
 
I am a little new to ubuntu & linux, How do I make a shell command compile my source code I surfed a...
[4 replies] Last: you can use make. if your file is called main.cpp (or main.c) mak... (by bigearsbilly)
post UNIX errno -> message conversion
 
I just made this, and then I thought it might help some people, so I'm posting it here: /* ...
[15 replies] Last: "Shaddap your face": Joe Dolce Disclaimer: This joke w... (by Grey Wolf)
by devas
post Mix C and C++
 
Hi, i have a question. Is it possible to write a code that callable both from C and C++? I wan...
[4 replies] Last: Thank you (by devas)
post Issue in reading a binary file
 
Hi guys i have a problem while reading a binary file... I have written some data in binary format an...
[1 reply] : cout<<sizeof(data); will always return 4. sizeof() is co... (by writetonsharma)
by luq
post curlpp on Ubuntu 9.04
 
Hey, I've managed to install libcurl and curl on my Ubuntu 9.04 system. But now I want to install...
[13 replies] Last: curlpp example: /** * main.cpp * * The most simple ex... (by delacruz)
by CD4
post Dirent.h
 
#include<stdio.h> #include<sys/types.h> #include<dirent.h> #include<string.h> struct dir...
[3 replies] Last: Put line 10 in the loop and break the loop when drnt is false (by Bazzy)
solved Host name to IP Address (vice-versa)
 
Hi Guys, How can I convert hostname to IP address? localhost ---> 127.0.0.1 Thanks in adva...
[1 reply] : Never mind found it. In case someone else is looking for it ... (by kevinchkin)
question segmentation violation????
 
Hello I have a problem while executing my code. It gave no error while compiling. The error i get...
[7 replies] Last: Segmentation fault occurs whenever your program tries to access INACCE... (by gajawadasatish)
by jimctu
post gcc library question
 
hi everyone im doing a project with the miracl library... i make it works fine with codeblocks on ...
[1 reply] : There are a couple of ways to do this: when linking: g++ -R<path_to... (by PanGalactic)
by Aazor
question Segmentation fault error
 
I need help debugging this segmentation fault.. I have narrowed it down to the separateComandsAndPro...
[5 replies] Last: ok thank you guys very much! (by Aazor)
question : operator (colon)
 
Alright, I've been doing some Gtk+ development as of late, and I've been going over the documentatio...
[3 replies] Last: Correct. (by kbw)
post question about reusing a nonblock file descriptor for epoll
 
After receiving a client event (EPOLLIN|EPOLLOUT|EPOLLRDHUP) ,then close the nonblock file descript...
[no replies]
post xml-xalan-c make errors
 
I'm new in this foruma nd trying to compile xml-xalan c++ on Ubuntu 9.04 ; I've installed gcc 4.4.2;...
[1 reply] : Have you asked on the xalan developer forum? http://xml.apache.org/... (by PanGalactic)
post Arguments to signal handler
 
Hi Guys, I was wondering, is there a way by which I could pass arguments to signal handle...
[2 replies] Last: Ah that's not good :-( Anyways, thanks for the reply jsmith (by kevinchkin)
post pthread_exit((void *)0)
 
Hi,I'm Woods! the function pthread_exit void pthread_exit(void *rval_ptr); will let the control...
[2 replies] Last: thanks,KBW i forgot I used a local variable :int i; i will see the e... (by woods2001)
post Programming with G++
 
It's very basic and I am sure many guys will be able to help me out. I have been programming quit...
[13 replies] Last: Look, as a new Linux programmer you could try this thread http://ubunt... (by ridowan007)
post Getting *** glibc detected *** free(): invalid next size (normal):
 
Hi , When i am writing to a file continuously I am getting this error. *** glibc detected *** ./...
[5 replies] Last: At first glance there seems to be a number of potential pitfalls. F... (by jsmith)
by devas
post collect2 error
 
Hello, i'm trying to call a C method in C++ code and i have some difficulties about it. let m...
[1 reply] : I do not see you linking against X_Module.o which contains the impleme... (by jsmith)
post SOAP / WSDL for designing a web portal on Linux/Unix
 
Hi there, Is there anyone who have experience with using SOAP / WSDL for designing a web service...
[no replies]
by rhine2
post Calculate ISP speed
 
Hello I am trying to develop a small program that will periodically (say every 6 hrs) calculate my ...
[4 replies] Last: Or you could use Beej's guide to network programming (which is centere... (by chrisname)
by CD4
post anything that displays parameter list as we go on coding?
 
hello, i want to know is there anything that will show the parameter list while we write a function?...
[2 replies] Last: Eclipse and NetBeans do this to an extent if I remember. I can't remem... (by computerquip)
by CD4
post copying data from file to anothr file
 
hello i am a newbie.. i had been following Beginning linux programming 4th edition. I tried to go f...
[4 replies] Last: hello duoas.. i am a coplete newbie so its not getting clear.. i re-wr... (by CD4)
post Segmentation fault while reading a binary file
 
Hi.. I am creating a program that writes to a binary file and then reads from it. It also checks th...
[3 replies] Last: @dkalita and @kbw.. I tried that .. that was the first thing i made bu... (by herat007)
question SDL_ttf linking error using TTF_GetFontKerning among others
 
I am having trouble linking SDL_ttf against a project I am developing on Mac OS X Snow Leopard. I am...
[1 reply] : What does your link command look like? And are you "installing" your v... (by ioctl)
post Problem with string and segmentation fault in UDP sockets
 
I am doing unix network programming over cygwin. I am trying to receive an object via the recvfrom()...
[2 replies] Last: A common(and dirty) way to achieve the serialization/deserialization y... (by ioctl)
by xcoder
solved gtk + linux
 
Hello again! I can't figure something out... How can I send more than one argument to function...
[3 replies] Last: If you want all the pointers to be passed to the timer callback withou... (by ioctl)
by schliz
post IPC Question
 
I have 2 Programs. One program will start the other and should block for input, read the input, bloc...
[1 reply] : stdout is (usually) buffered by default. Try setvbuf(stdout,NULL... (by ioctl)
by bntlyb
post Creating new process
 
Hey guys! I have a problem and was wondering if anyone could help? I'm currently working on a ...
[7 replies] Last: Shared memory could be an option as well I guess. And pipes aren't all... (by ioctl)
by tition
post code::blocks how do I make the IDE jump to the line of error
 
Hi all, Sorry for the totally newbie question, but how do you make the Code::blocks IDE for ubun...
[1 reply] : You just need to click on the error message in the 'build messages' bo... (by Bazzy)
by rajnp
question getting terminals of unix
 
Hi i need to get the terminals that are connected to my unix box in a c program. with ttyna...
[1 reply] : The nice thing about open source software is that there are plenty of ... (by PanGalactic)
Pages: [1] [2]   Archived months: [sep2009]

Registered users can post in this forum.