Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~422 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for cpp.coder37

Hi every one. I want to ask a question. Whenever i plugged a usb in my computer i want to save that time when this happen. Means that i want to save when when a usb is plugged in my pc in a particular day. I want to do it …

Member Avatar for sirio.bm
0
79
Member Avatar for rajina

Command line arguments in C #include<stdio.h> int main(int argc,char *argv[]) { FILE *fp; char c; if(argc==2) { fp=fopen(argv[1],"w"); while((c=getchar())!=EOF) { putc(c,fp); } fclose(fp); fp=fopen(argv[1],"r"); while((c=getc(fp))!=EOF) { printf("%c",c); } fclose(fp); } return 0; } How to run this program in linux? I have tried these steps: 1. open terminal in linux …

Member Avatar for rajina
0
181
Member Avatar for sirio.bm

Developing on an ubuntu system, using code::blocks. Need to read and write to XML config files. there is a DOM library for Gnome, libgdome2. Found a good source for this at [url]http://gdome2.cs.unibo.it/[/url] I am trying to compile the following code, which is more or less straight from the tutorial on …

0
44
Member Avatar for sirio.bm

Hello All, My name is Sirio, I am a long-time Linux sysadmin and aspiring music producer. Recently, I have gotten down to brass tacks and learned C and C++. This is because I am working on some projects involving RTAI linux as a control mechanism for external machinery. I am …

Member Avatar for maceman
0
118