Hi,
I developed a tool which converts the binary formatted log reports to ascii format on windows.I have all the code in the Expert Exchnage portal..Here is the link to it..
http://www.e...
I have write this code in c to read a file.I want the data get in a queue but i do not who to do this.Can anybody help me????
My code is :
int main(){
char readline[100];
FILE *fp;...
We have to write a Sleeping Barber program that implements two functions, Barber() and Customer(). The main program will have to create several children using the fork system call. Five of t...
Hello,
do you know some good link which could give be good basis about bit tricks in C++? With lots of examples?
I know what bit operators do (this is redundant info for me later). I need to...
hi,
I am using turbo C++ Ms mode compiler. It was working fine untill yesterday. below is the program that i wrote last week and i tried to run this today (it was working fine last week)and i...
the man routine is provided by the tutor and the node was written by the students....the main routine cannot be touched by me or any other student.....but whenever the program exectues.....it ...
Given a 4 byte integer / long, please provide me with a simple logic to convert it into BCD Format.
Thanks.
Hello, I'm a freshman programming student and I need a VERY FAST solution to a finals project our professor gave us. We need to write the code for a C program that:
1)Will ask the user to inpu...
Can anybody tell me how to use binary searh on linked list? I really have no idea.Thanks
I have a problem with my codes, i was wondering if someone could help me....
I'm using an OV6620 camera with a PIC 16F877A microcontroller. I am trying to have my camera identify lines on the...
I want to print out a number and along side the number adegree symbol, which looks like a small o, this is to the right of the number printed at the top half of the number.
(500 pts)
The first part explains the program and what it should do(this is just the first part). The second part is my sourcecode.It compiles correctly,btw.I know it has something to do wit...
How would I check to see if a given file exists? Not necessarily to open it or close it or anything, just to see if it exists.
I am runnning XP Pro. I have 1.5 GB of RAM.
I am a computer programmer.
I maintain a legacy application that uses an old 16-bit compiler (MSVC 1.52). This is not going to change. I ne...
The technique used to be big to prevent assembly programs being hacked.
Can/Has this been done for C?
Just a link or two :)
Hi experts,
I am building a string class for a Cpp assignment and I am struggling with overloading the >> operator.
I have an implementation of this method working, but it includes the ...
Hi
I have written a code that reads a file in two passes
In the first pass it counts the number of rows and colum to allocate memory for a 2d array.
After rewind, in the second pass it read...
/usr/bin/ld: cannot find -lglut
How to fix?
How can I change the dpi of a TIFF?
unix c
I would like small c program example that would
read 2 line of file and return it's value.
I hope you can return string value from main function.
thanks
Can someone tell me what the ANSI standard is on location of bit fields in memory for a union. For example:
typedef union OCTET
{
unsigned char BYTE;
struct
{ ...
what would the recurrence relation be for the following pseudo code algorithm?
void Height(T)
{
if (T is not empty)
{
lefttreeht = Height(left subtree of T);
rig...
I'm working with libecal to manage and add events to Evolution. Evolution date/time events are set to UTC timezone. No matter what i do the events in the calendar are always entered according ...
Hey,
I'm coding in C, looking to copy the param into a variable, like so:
int main(int argc, char * argv[])
{
if(argv != 2) return -1;
printf("%u", sizeof(argv[1]));
}
...
I have a program in C language for transferring files from one computer to another using RS232 serial cable, but i don't have an idea on how it works and what concept is behind it, can i be ex...