Summary: Hi! I have iwow gsm modem.I need to connect it to my computer and control the operations like sending sms,receiving sms, receiving a call etc. How...
Summary: Hello im trying to build a Simple FTP program written in C. So far I have made a text file FTP program that prompts the user for the name of the file...
Summary: You can also you the C standard library functions malloc and free like char *d_ptr; char *s_str = "This is just an arbitrary string"; d_ptr = malloc(...
Summary: Hmm, It seems I have excited some interest with this problem. It was given as an optional assignment in one of my c-programming tutorials in college. ...
Summary: I am trying to open a file for reading and a file for writing in c programming. This is how I do it. FILE *in, *out; if ((in = fopen(argv[1], "rb")) ...
Summary: Hi all, I need to make one programe to send and received message from other PCs. The programe must be in C language. All PCs use Linux Red Hat OS. I w...
Summary: Hello everyone, I hope someone could help me. I'm programming a proxy in C code. It's trying to redirect requests from a Quicktime player to the Darwi...
Summary: Hi, I have decided to learn how to program in c, eventually to move onto c++ as I can see its the way to go for windows programming. To start the r...
Summary: Dear guys, Anyone who proficiency in C programming for the 68HC11 Microcontroller Chip. Please help me out of some problems. Drop some line below me, ...
Summary: I am trying to write a program in C that takes a positive integer input and returns all of the combinations of three numbers that add up to the intege...
Summary: Hi i desperatley need help in programming in C. I have been asked to do this asignment: Develop a sales analysis program to track sales performance f...
Summary: a)how do i write a program in C that reads English text to end of data,and print a count of word lengthi.e, the total number of words of length 1 whic...
Summary: I am having a problem with a program that converts numbers to roman numerals. I used a do-while function but i'm thinking about using a swith instead...
Summary: is there an easy way to play an mp3 in a program written in c++ using the windows.h api? i need the user to be able to click a button and have the son...
Summary: how to read serial port in C language. printf("%d", inport(0)); outportb(0, 65); delay(1000); printf("%d", inport(0)); supposing initial value at seri...
Summary: I'm currently working on a personal project. I want to be able to send an MP3 file, which has been converted to binary form, via the parallel port to ...
Summary: Hi, I have a doubt in C++ programming... Is there any way to change the value of private member variables of a class without calling any membe...
Summary: I'm starting programing in C. I want to take information from Dos,like the mp3 files that exist in a CD, and using this in my program. please,help me....
Summary: Hi everyone. Does anybody have an example program in C++ that displays a keyboard and shows which key was played, in addition to making a beep for the...
Summary: In the small program described below, is there some kind of special 'null' character in C (NOT '\0' of course!) which I could pass as the 4th argument...
Summary: hello ,,, i'm new here ! i hope you ll help to find what i m looking for so i'm trying to learn how to program in c++(i'm null),i've a compiler as bor...
Summary: Hi, I'm writing a program in c, in which need i to retrieve the following info on windows system (98,NT): * Size of different disks (C:, D:, E:) * ...
Summary: With iostreams in C++ you can use the peek function to look at the next character in the stream without extracting it. The following program will firs...
Summary: Hello. Does anybody know how to use the current time in C++? What I intend to do is have a function within my program execute when hours past midnigh...