2
votes
5answers
108 views
A question about union in C
I was reading about union in C from K&R, as far as I understood, a single variable in union can hold any one of the several types and if something is stored as one type and extracted as another …
0
votes
1answer
18 views
How to create a magnet link client (for ex for ThePiratBay)
How to create a magnet link downloader sharer using open source libs (C# if possible) ?
What do I need:
Open Source Libs/wrappers.
Tutorials and blog articles on How to do it, about etc.
-1
votes
3answers
74 views
How to do a tree structure in C
I'm a very beginner in C. However, I need a program that solves a problem for me. How can I do the following?
I need a tree structure. This is not traditional tree as every leaf can have various many …
0
votes
4answers
65 views
C stdlib .h’s on C++ and malloc/realloc
I was really bothered by the inclusion of C stdlib functions on the global namespace and ended up writing things like ::snprintf or ::errno or struct ::stat, etc, to differentiate from some of my own …
0
votes
2answers
32 views
ncurses terminal size
How do I find the terminal width & height of an ncurses application?
0
votes
0answers
9 views
Steps to read data from ARM microcontroller port
I am having trouble reading serial data from ARM LPC2378 microcontroller. Will I have to use UART or any GPIO port can be used??
is ayone having c code for it??
0
votes
5answers
50 views
Passing a structure by reference and manipulating it
typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
…
-1
votes
6answers
212 views
What is the best language for sockets programming?
I'd like to develop software program that communicates between clients. What is the best programming language to do this?
2
votes
14answers
328 views
Memorable 32-bit value as a constant
I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too.
So far, I have come up with these two:
0xcafebabe
0xdeaddad
Can you please …
0
votes
1answer
62 views
Displaying single digit on a LCD using ARM microcontroller?
I am writing an embedded application in which I need to display a digit on LCD.
There must be some pre-existing libraries available doing the same. Or is there some reference code in C-language that …
0
votes
1answer
31 views
How to read value from GPIO port of an ARM microcontroller?
How do get ARM microcontroller port value into a 32 bit variable.
I am using LPC2378 microcontroller.
0
votes
4answers
111 views
What to look for in a candidate with over 8 years of experience in C, C++, Linux Application Development?
I need to interview a candidate with over 8 years of experience in Linux using C/C++.
What would be the best way to judge such a candidate?
Do I need to test his understanding of algorithms?
Do I …
0
votes
1answer
30 views
How to get value from 15th pin of 32bit port in ARM?
I am using an IC, DS1620 to read 1 bit serial data coming on a single line. I need to read this data using one of the ports of ARM microcontroller (LPC2378). ARM ports are 32 bit. How do I get this …
1
vote
5answers
197 views
C pointers : pointing to an array of fixed size
This question goes out to the C gurus out there:
In C, it is possible to declare a pointer as follows:
char (* p)[10];
.. which basically states that this pointer points to an array of 10 chars. …
0
votes
1answer
28 views
Thermometer using DS1620 IC and arm microcontroller
I am working on a project in which I have to use DS1620 IC to display temperature using ARM LPC23xx micro controller. I want to write code in C. I am a newbie in embedded systems and I have to finish …
