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.
5
votes
2answers
42 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
65 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
0answers
16 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
0answers
8 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
36 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
11 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
0answers
20 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
33 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
64 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
40 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
42 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
35 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
43 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
66 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
16 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
29 views
How you would implement this redirection in C?(pipe redirection dup)
How you would implement this redirection in C? with linux syscall.
cat -A < in.txt | wc >> out.txt
-1
votes
1answer
15 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
49 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
54 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
32 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
9 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
79 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
8 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
66 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
69 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
14 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 ...
2
votes
1answer
52 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
43 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
30 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 ...
1
vote
1answer
28 views
arp request and reply using c socket programming
I am trying to receive and send arp packets using c programming in Linux (ubuntu)
My program works fine [ with out any error ], but i can not get the packets from wireshark.
source code:
my source ...
8
votes
7answers
256 views
How to determine if returned pointer is on the stack or heap
I have a plugin architecture, where I call functions in a dynamic library and they return me a char* which is the answer, it is used at some later stage.
This is the signature of a plugin function:
...
2
votes
0answers
16 views
Application was compiled with png.h from libpng but running with another on different Linux systems
I develop application using QT + Opencv. These two libraries use libpng.
And when I run application on some platforms I get warning: "Application was compiled with ... png.h from libpng... but ...
1
vote
0answers
20 views
Is there a Java/C library which allows identify multiple keyboards?
I need to connect more than one keyboard/mouse with a single computer. Manymouse library can identify different mouses, but is there a library which can identify different keyboards?
I mean, when I ...
-2
votes
2answers
74 views
c program to read the data between 2 strings [closed]
I have a text file called new.txt and it contains the following element
vv
vinoop
raju
kiran
regu
ramu
I want to read the only the data between "vinoop" & "regu" print it on other file
so i ...
1
vote
0answers
18 views
blkid_get_cache seems to leak memory
I am doing some linux programming and I encountered a situation where a library function from the blkid library leaks some memory... There is not too much documentation about it ...
0
votes
1answer
24 views
ListCorrelate vDSP equivalent for convolution of {{a,b,c},{d,e,f}} and {{g,h,i},{j,k,i},{l,m,n}}
If I ListCorrelate two list of real doubles
{{a,b,c},{d,e,f}}
{{g,h,i},{j,k,l},{m,n,o}}
in Mathematica I get
{{a*g + b*h + c*i + d*j + e*k + f*l},{a*j + b*k + c*l + d*m + e*n + f*o}}
Can ...
-1
votes
0answers
25 views
How to get the new elemet in a frame using opencv
I'm trying to write a program in C++, using OpenCV, in which I get the new object that appears in the frame I tried the to subtract the new frame from the old one but it doesn't really works. Any ...
0
votes
3answers
62 views
Generic matrix: how to pass a type in a function argument
I created a generic matrix structure like this:
typedef struct mat_t {
/**
* \brief matrix structure
*/
unsigned int c, l;
void **matrice;
}* mat;
My problem is to learn how to allocate ...
0
votes
6answers
73 views
Why does the following line of code cause my program to seg fault?
In the following code:
#include <stdio.h>
#include <string.h>
int main (int argc, const char * argv[]) {
char input[20];
fgets(input, sizeof(input), stdin);
char * pch;
...
0
votes
2answers
65 views
make sure one cpu has written a “double” before another cpu read that “double”?
I'm going to running one OS on a dual-core ARM Cortex-A9 CPU (one core runs Linux, the other one has no OS).
In the no-OS side we write a 64-bit double to DDR memory, then the Linux side reads it.
...
0
votes
0answers
48 views
-fPIC ignored for target (all code is position independent), useless warning
When I compile my library I have switched ont -fPIC because I want to be able to compile it as a shared library but also as static.
Using gcc 3.4.4 on cygwin I get this warning on all source files:
...
1
vote
2answers
42 views
How to read and store 2 float values seperated by a comma from a file into two arrays where each float is stored in one array
my text file format is this:
3.2 , 5.6
444.2 , 555
112.34 , 32.3
i want to read the above information present within file name file.txt and store it in two arrays a,b where a will have the float ...
-1
votes
4answers
45 views
Why isn't strtok correctly separating tokens?
I'm trying to adapt the following working code:
http://www.cplusplus.com/reference/cstring/strtok/
as follows:
#include <stdio.h>
#include <string.h>
int main (int argc, const char * ...
1
vote
6answers
93 views
Why does my C compiler give a warning?
Beginner question. I have the following code:
char input[10];
scanf("%s", &input);
My compiler throws the following warning:
warning: format '%s' expects type 'char *', but argument 2 has ...
2
votes
2answers
37 views
__stack_size__, __stack_end__ symbols in 'C'
Is there a direct method in which the values of the stack_start and stack_end symbols can be referenced in a 'C' function? I can do this using a bit of assembler to read each symbol and place it to a ...
0
votes
2answers
41 views
How to use AT commands in C language
My project consists of a part that has to send sms via GSM modem using AT commands. I have learnt using these commands via hyper terminal and putty. What I want is that how can I use these AT commands ...
1
vote
1answer
21 views
mexCallMATLAB syntax for assigning output
I've spent a week on the following problem and I can't for the life of me figure it out! I'm going to be as brief as possible with the code and chop out irrelevant lines but it should be clear as to ...
0
votes
0answers
21 views
Why is the OpenMP reduction clause needed to make reductions concurrent?
The OpenMP 'parallel' construct and 'SIMD' construct (new in revision 4.0) define the reduction clause which tells the compiler which variable the reduction is performed on and what is the reduction ...
0
votes
1answer
54 views
Convert integer to hexadecimal
I just need to convert integer to hexadecimal. Actually I have a char array in which I am storing hex values.
int var;
var=[self getValue];
char hexValues[5];
hexValues[0]= 0x02;
hexValues[1]= 0x04;
...
-4
votes
0answers
18 views
Parse Microsoft Lync conversation files? [closed]
Ok, I have what I believe is a relatively simple set of questions, and I just need to be pointed in the right direction.
I am using microsoft Lync at work for instant message conversations with my ...

