C is a general-purpose computer programming language used for operating systems, games and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for use with the Unix operating system.
0
votes
0answers
9 views
scanf format specifier to read zero or more characters from a set of characters
I need to be very strict in regard to the characters that can be in a read string.
I have a series of whitespace followed by a character followed by a series of whitespace.
Examples: " c ", "c" , "", ...
0
votes
0answers
7 views
Calculating stack size in optimized way
How to calculate stack size
Suppose main()-->f1()-->f2()-->f2()-->f3()
I can call GetThreadContext() microsoft API and get the value of RSP and RBP
But these will be that of f3
How to calculate the ...
1
vote
0answers
15 views
Gnuplot generated by C program can't be rotated
I'm trying to create an interface with C that generates a surface plot that can be rotated. I've got C to generate the plot but it can't be rotated, any ideas? It seems like my program still has some ...
0
votes
2answers
49 views
Shifting syntax error
I have a byte array:
byte data[2]
I want to to keep the 7 less significant bits from the first and the 3 most significant bits from the second.
I do this:
unsigned int the=((data[0]<<8 | ...
1
vote
0answers
43 views
“Conditional jump or move depends on uninitialised value” in double linked list implementation
Valgrind states me two errors that I can not solve.
I get a "Conditional jump or move depends on uninitialised value" error message in the following function unplug_set. Is it because of the NULL ...
-2
votes
0answers
16 views
Translate assembly to C [Erase Memory with PIC18]
I am trying to write to flash memory on my PIC18F87J11 but my problem lies with assembly. The datasheet for my PIC has only assembly and I am using C compiler. I was wondering if someone can help me ...
0
votes
0answers
18 views
Shared Memory between process and corruption
I have a number of programs that I'm adding error reporting for. My plan is to create a watchdog app that spawns when one of them is launched and sits idle waiting for one of the main apps to crash ...
0
votes
1answer
13 views
statically linked libraries on mac
I just don't understand.
I'm to believe that gcc automatically links libc.a when invoking the gcc driver.
However, out of curiosity I wanted to link libc.a statically using -static, but I get;
ld: ...
0
votes
2answers
22 views
Assigning a default value to each element in an array of struct in C
I need to initialize an array of structs with the same default values. This is a VERY large array, so setting each element by hand in an initializer is not feasable. Is the following code a correct ...
2
votes
1answer
31 views
C bind to a specified TCP port
i have created a Linux network app with C and it kind of works
except that it every time i run it , it binds to a new Random port
//Create Socket
int socket_desc;
...
0
votes
2answers
58 views
Set object into C array at first available index
I have an array of box2d bodies, initialized like this:
b2Body *touchedBodies[10];
I need to populate it with several b2Bodies, and I want to set the next b2Body into the first available place -- ...
1
vote
3answers
31 views
Want to reduce a function by looping through structs
Good Morning All,
I'm trying to reduce a function that's very repetitive, but each "repetition" has two structs with struct A.element1 setting struct B.element1. At the moment I have myFunction() ...
1
vote
3answers
69 views
Making an array of char[] in C
I am working with a wifi microcontroller that needs to serve up a large (20kb) static html page. Because individual buffers on the microcontroller only hold 1.4kb, it is necessary to break up the ...
0
votes
2answers
68 views
Which IDE for C/C++ fits my need? [closed]
I know that there is a ton of article on "What is the best IDE?". Most of those article are outdated or take into account parameters that I absolutely don't care about.
So I am seeking for ...
1
vote
1answer
50 views
Convert unsigned long long to double in C
I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the life of me, I cannot figure out how to convert an unsigned long long int ...
0
votes
2answers
16 views
How to get the connected client's ip using WINSOCK2 and C?
my question looks clear, i want to get the IP address of the client who's just connected into my winsock2 running server, i'm using C.
Thanks in advanced!
1
vote
0answers
22 views
How to change the source code when called zend_compile_file() before it is parsed?
I am replacing zend_compile_string() for code pre-processing, which then pass to the original zend_compile_string().
It works.
But I also need code pre-process obtained from the files ...
0
votes
0answers
11 views
Parse complex JSON sub objects in C with YAJL
I have YAJL parsing me simple elements like given in the included example without a problem. (strings, integers, arrays, ...)
The example code can be found here: ...
2
votes
3answers
37 views
Multidimensional arrays allocated through calloc
I have a question about how memory is allocated when I calloc. I had a look at this question, but it doesn't address how memory is allocated in the case of a dynamically allocated two dimensional ...
2
votes
2answers
43 views
upper bound for the floating point error for a number
There are many questions (and answers) on this subject, but I am too thick to figure it out. In C, for a floating point of a given type, say double:
double x;
scanf("%lf", &x);
Is there a ...
2
votes
3answers
74 views
Using pointers to move between elements in struct
This is closely related to this question.
I am writing some USB code using libusb. Looking at the source code of the library I see they are using pointers to parse data and fill structs.
Example:
...
6
votes
2answers
59 views
output redirection produces empty file
So this is probably a stupid question, but I can't see what I'm doing wrong.
I am running a program that produces output when called like ./ar. The output looks like:
-0.00781 0.02344 0.98828 ...
0
votes
3answers
87 views
String manuplation in C
I hava a string, say ../bin/test.c, so how can i get its substring test?
I tried strtok api, but it seems not good.
char a[] = "../bin/a.cc";
char *temp;
if(strstr(a,"/") != NULL){
temp = ...
0
votes
1answer
32 views
C String encoding UTF8 without libiconv
I know this question has been answered to most of the languages but i have not found a solution for C or i am misunderstanding something.
I have declared a "char *strSSID". I have a function in a web ...
0
votes
1answer
21 views
Meaning of field d_off in last struct dirent
man getdensts says that in d_off an offset to next struct dirent is kept. But what should be kept in this field for last dirent? I was unable to find this SVr4 standard to look there, but man says ...
0
votes
4answers
48 views
Printing status strings returned from an API
The Status code return by an API can be any of the following as per the document given by the vendor.
FTC_INVALID_HANDLE
FTC_NULL_INITIAL_CONDITION_BUFFER_POINTER
FTC_INVALID_NUMBER_CONTROL_BITS
...
0
votes
0answers
16 views
SMB_COM_SESSION_SETUP_ANDX “NTLMSSP_AUTH”
Refering to the first comment in post SMB/samba support on iOS?
When I try to implement SMB_COM_SESSION_SETUP_ANDX "NTLMSSP_NEGOTIATE (with Extended Security negotiation, unicode set and security ...
0
votes
1answer
33 views
How to build arch/machine dependent code with autotools
I am getting started with autotools and I am working on a C project that requires different build paths for different architectures (i386 and x86_64).
So far my directory structure is
/maindir
...
2
votes
1answer
37 views
sscanf usage - how to verify a completed scan vs an aborted scan
My database provides a textfile with opening and closing " to delimiter formulas.
The set of formulas is very limited and will be easy to implement once identified.
I try to use scanf to get the ...
0
votes
3answers
71 views
Fetch most significant word of a double
I would like to fetch the most significant 32-bit word of a double variable.
I know that a double is 8 bytes long and I expect as a return of my function an unsigned long that will hold the 4 most ...
0
votes
4answers
42 views
strtok_r - get indicate when there is nothing between the delimiters
i use strtok_r like:
char *the_sting = "a|b||e|f";
char *last;
char *current;
current = (char*)strtok_r(the_sting, "|", &last);
while(current != NULL)
{
printf(current);
printf("\n");
...
0
votes
3answers
48 views
mem compare arrays to get number of matching bytes
int a[10];
int b[10];
memcmp(a, b, sizeof(int) * 10);
memcmp() only tells us which memory block is bigger/smaller since it just returns -1,0,+1.
Is there a way to know number of matching elements in ...
0
votes
2answers
40 views
Windows socket errorcode 10055
I've developed an app that uses sockets over windows. It works perfectly but after some time, the internet connection begin to fail and finally I get this error (10055), which means that my app run ...
0
votes
2answers
52 views
Sequence Stack: uninitialized value was created by a heap allocation
Just now I wrote a simple data structure Sequence Stack in c, and met a problem.
==8142== Use of uninitialised value of size 4
==8142== at 0x408F4AB: _itoa_word (_itoa.c:195)
==8142== by ...
2
votes
5answers
87 views
declaring variables as locally as possible and switch statement
Some famous code style books recommend declaring vars as local as possible(
http://stackoverflow.com/a/10205934/700825)
My question is : Is switch statement exempt from this rule? For example if ...
0
votes
0answers
20 views
Function to send GET requests in LoadRunner using .h library?
I have script in LoadRunner, which sends POST requests using functions in .h library.
I must write new function and add it to .h library to have possibility to send GET requests to web-service in ...
-3
votes
0answers
32 views
How you would implement this redirection in C?(pipe redirection dup) [closed]
How you would implement this redirection in C? with linux syscall.
cat -A < in.txt | wc >> out.txt
-1
votes
1answer
16 views
write char[] to NSOutputStream and read from NSInputStream
I am trying to write to NSoutputStream as below:
+(void)write:(char[])data
{
int size=(sizeof data) / (sizeof data[0]);
[outputStream write:(const uint8_t *)data maxLength:size];
}
is this ...
3
votes
3answers
61 views
What is the difference between strtol and strtoul?
I met some unexcepted result of strtol in c
Here is the sample program.
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("%x\n", ...
-5
votes
4answers
60 views
C language What this code mean ? if(button & 1)==1
I am confused about this..
That what does it mean.
What this code will do..
if((button & 1)==1)
I have tried to search it on net but i couldn't find a good answer..
Thanks in advance..
0
votes
2answers
34 views
Getting int values from SQLite
I heard of using sqlite3_prepare_v2 instead of sqlite_exec to get integers from database, but I failed to find any examples. This page wasn't helpful also. Now I am getting strings from database, so I ...
0
votes
0answers
10 views
Access a sector from USB flash memory in linux
I am studying the FAT32 manual, now i want to write a program to browse the device. How to read a specific sector of the device, i do not want to load the entire device as a file into memory, please ...
5
votes
7answers
92 views
Multi-threading with long linked-list
I have a algorithm question here. There are 10 threads in the system and you are given a link list with 10 K elements in it. How do you do the thread synchronization (addition deletion etc.) so that ...
0
votes
0answers
9 views
Unittesting with glib results in segfault with g_test_fail()
I have been trying out glib for unittesting and have run into trouble. I am interested for a way to not abort the remaining part of the test if a single part fails. I have been trying to do this using ...
-3
votes
3answers
68 views
How can I print “d” of pop stack as a binary number? [closed]
#include <stdio.h>
#include <stdlib.h>
int push(int);
int pop(int);
int main()
{
int d,a,i=0,head=0,stack[head];
printf("GIVE AN INTEGER >0 AND <128 :");
do
{
...
3
votes
6answers
72 views
assigning pointers vs memcpy/memmove
Hi there I have a question pertaining to C pointers (especially void *)
I'm working with void * pointers that point to arbitrary blobs of memory that act as cells for a Vector implementation. These ...
-3
votes
0answers
16 views
carmel installing error : undefined reference to MappedFile::kArchAlignment
in installing carmel a finite state transducer i got a bunch of errors about undefined reference to a some thing
/usr/local/include/fst/lib/util.cc:86: undefined reference to ...
3
votes
1answer
59 views
Addressable memory and relation with buffer overflows
Reading about buffer overflows, I came across the sample code given below:-
void function(int a, int b, int c) {
char buffer1[5];
char buffer2[10];
}
void main() {
function(1,2,3);
}
It's from ...
0
votes
2answers
46 views
dynamically allocating an array of linked lists
So I'm trying to make an array of linked lists, at first I had the following code:
typedef struct node{
int data;
struct node *next;
} node;
struct ko {
struct node *first;
struct ...
1
vote
2answers
31 views
Getting the input strings into an array and sort the array of strings alphabetically
I want to input some strings and sort them alphabetically, at most 100 strings and the length of each string is less than 50, but I get a Segmentation fault.
#include <stdlib.h>
#include ...




