Hello,
where can I find examples, explained reasons and solutions for these gcc compiler warnings:
warning: pointer targets in passing argument 1 of â¬Üstrncmpâ¬" differ in signedness
w...
A large 'C' Programming development task needs to be developed by Two developers. I'm thinking of using single view and single development branch for both developers. Is that possible? If y...
So I am asked to do a simple task.. I have two file which contains a list of words.. the list of words is extremely huge and one is sorted and one is not.. I have to produce a third file which...
Hello experts,
I need a little C snippet that writes the contents of a text-file to a URL. Presumably the procedure is something along the lines of:
1. open a socket
2. write the data v...
hi,
i have strings like this:
string1="helloworld";
string 2="hello world";
when i do strncmp(string1,string2,5);
is just the first 5 characters be compared, which is hello ?
the...
hi,
could anyone plssssssss help me?
i am running my code with gcc and i get error undefined symbol floor first referenced in test.o
ld:fatal:Symbol referencing errors.....
i thinkin...
I am new to C development on the PC but have been programming for 20+ years, at least 10 of that in C on Sun/Solaris. I am working in Visual Studio 2005 under WinXP. I have created a solution ...
Hi!
I'm trying to compile my server written in C under solaris by using a Makefile...
This is my makefile:
# default
OS = cygwin
CASESENSITIVE = yes
# messaggi di informa...
Hi I got a question here with a snippet of my code as follows:
EXEC SQL BEGIN DECLARE SECTION;
VARCHAR l_schema[21];
VARCHAR l_table_name[31];
EXEC SQL END DECLARE SECTION;
printf("l_...
I have recently been given code which was written to program a PIC16F877A. This code has been written in C.
I understand the different ports but I dont understand what TRISA is and what th...
I have be given code written in C to program a PIC16F877A. At the minute I only have 5 spare pins but I need 12 inputs.
My inputs are LED's and only one LED can be on at a time.
As I d...
Hi,
Similar to the question I just asked, I need help translating the second formula titled "The inverse formulas are " into a function which uses the C library routines:
http://math...
Hey folks.
I writing this on behalf of someone else to please let me know if you have any questions.
How do you call sendmail from a C program in Linux?
Cheers
Hi,
Can anyone explain to me how does these 2 pathfinding works?
Hi,
I trying to draw a yellow line. After i getting the 2 entity position, i call draw_path(); to draw the yellow line.
but the yellow line seems to appear and blink off. Any idea?
I've been trying to figure out when and where a context switch can occur. I thought I understood it but a program I wrote seems to be proving me wrong.
Here's the setup. I've declared a glo...
hello, i have a pipe that takes a output of a command as an input of another.
it works fine when i just type in ls -a | sort
but it doesnt work when i type cat afile | wc -l
what should i...
HI Gang,
Does anyone have examples of the librsync (https://sourceforge.net/projects/librsync) library being used? Like most open source projects, the documentation isn't great and I am gav...
I am looking for a way to read a C+ file that is already compiled?
Can I do this?
Thank you.
hello
i have created a dll using c code not C ++ ?
now i want to write another code in c which would import that dll ?
can you please help me out?
Dear Sir/Madam,
I am working in reducing the memory space while storing the fingerprint. For that I used some logic and reproduced the fingerprint. I implemented the logic in C a...
I thought I had this one completed but I need to add a loop statement returning the user back to the menu prompt. I tried implementing the loop but I did not succeed. Can you provide guidanc...
Hi experts,
I use GLib to code a hash table. The hash table contains many Gnome signle linked lists. For those values that have the same key, they are save in a same list.
My problem i...
This program creates a linked list, fills it up with random numbers, sorts it then prints it! i was wandering why im getting a "segmentation fault" when trying to display output!
I am asked to develop a code that will allow me to process a makefile, just like make.. but it;s called mymake.. so how can I do this? how can I read those unix command line? I am thinking of ...