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.

learn more… | top users | synonyms

-1
votes
1answer
10 views

synchronisation issue within callback functions

In a continuous loop barcodes are scanned and if scan is valid text data and voice data are read out/played, which happens in differnt context. Text playback happens first, then its callback function ...
0
votes
0answers
4 views

open source library for closed captions decoding following cea 608b / 708D standard

does anyone knows about any open source library for closed captions decoding following cea 608b / 708D standard. Need this to decode broadcasted captions on tv in US regions.
0
votes
0answers
13 views

How I can get log in time asp.net 4.5 in visual studio 2012

How I can get log in time asp.net 4.5 in visual studio 2012 i want to store the time for example {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8} cqn u help me encrypt the array with public key (modulus AND ...
0
votes
0answers
44 views

while(1) loops infinitely executes its first statement and does not go to the next statement

I am writing a code in which there is while(1) loop. Inside while(1) loop there is a message box and then recvfrom() function which according to my understanding must block in call to recvfrom() until ...
-2
votes
0answers
45 views

Large array initialization from code or file

I need to initialize a large number of small images (1000 images 200 bytes each) into a static array, along with some meta information. Reading 1000 .png files on startup seems suboptimal to me. I ...
0
votes
1answer
40 views

Some numbers take longer to factor than others

Can someone tell me the reason that the number 104751475143 is computed in less than a second while the number 251475141 takes a longer amount of time? The code is trying to find the largest factor. ...
1
vote
1answer
42 views

what happens if tried to close an already closed socket winsock? [duplicate]

What will happen if i call closesocket(m_socket) two times? After first call the socket will get closed. Whether after second call something will happen that is not good for the program or ...
2
votes
2answers
17 views

opening .ts files in C and reading bit by bit the contents of the stream file

Can a mpeg 2 transport stream ( .ts ) file be opened in binary mode in C ?? How to read the contents of the file bit by bit for analyzing the various tables in the transport stream?
4
votes
3answers
57 views

Address of a variable stored in a register

If somewhere in my code, I use the address of a variable (pass it to some other function, for example), the compiler will automatically choose to store it in memory? (as opposed to the possibility of ...
0
votes
4answers
73 views

C Programming File I/O

I'm trying to read from a text file and write to one, but every time I execute my code, nothing happens with the text files. By "nothing happens", I mean that the program won't read my input file and ...
0
votes
2answers
22 views

How do I communicate between a server and a client using sockets? [C]

I am doing a Unix, C assignment. I am creating a Server and a Client which will interact with each other. I am pretty sure I have set up the basic framework but I when I try to send/receive messages, ...
0
votes
0answers
20 views

why do we need to burn a root file system in embedded system development

You know when we do embedded system development,we'll burn a root file system first(like cramfs etc.) and then burn a Linux kernel.Since there's already a file system in the Linux kernel, why should ...
0
votes
1answer
20 views

How to build C program that emedded Lua

I'm learning how to embed Lua into C, and start with a simple example: demo.c #include <stdio.h> #include <string.h> #include <lua.h> #include <lauxlib.h> #include ...
-2
votes
3answers
33 views

C Compilation error: request for member ___ in something not a structure or union

I'm currently trying to create a hash table of strings. However in my search function I've been running into an error: request for member _ in something not a structure or union.. again /*search ...
1
vote
1answer
62 views

Dynamical Memory Allocation / Making use of unused memory

I'm going to write an application that needs a lot of memory dynamically. Most of the memory is used for caching purposes and is just used for speed ups. Those parts could actually be freed on demand. ...
-6
votes
0answers
38 views

Algorithm project - program in C [closed]

I must resolve one algorithm problem. I searched in the web for help, but I didnt find anything and I dont know from where to start. Please. help me! So, the problem: The European Commission decides ...
0
votes
1answer
35 views

read input character and print the occurrence in graphical format

I am reading the input and trying to print all the input lowercase character in a graphical format, am able to read it and keep track of the number of time each character repeats but not able to print ...
4
votes
2answers
101 views

What's the runtime of this algorithm?

I just wrote an answer to a question: longest common subsequence: why is this wrong? This function is supposed to find the longest substring between two strings, but when I tried to figure out the ...
1
vote
0answers
25 views

'^M' character inserted instead of new line

Goal: Transferring a file from client to the server. Environment: Linux Problem: When opening the incompletely copied file in the server, it looks like there is a "^M" character in the place of ...
3
votes
6answers
75 views

Recursion in C confusion

I'm working through a book that includes a chapter that deals with recursion in C. It prints the 99 bottles song to the log. Here is the code: void singTheSong (int numberOfBottles) { if ...
0
votes
1answer
30 views

Vector Input Using Scanf (C language)

First time user of stackoverflow, but long time visitor. I thought it would be prudent to start being more involved. But first, I have a small question :) Basically what I'm trying to do is take in 3 ...
0
votes
2answers
37 views

Understanding a C prototype

A function prototype is int alt_irq_register (alt_u32 id, void* context, void (*isr)(void*, alt_u32)); What does the last part mean? What is the *isr doing?
1
vote
2answers
42 views

is there any consequence if I create a lot of pipes in the same program

I need to create a lot of pipes, I want to use them as fifo queues between threads in the same process, and then do select/poll on them. my question is, if I create a lot of queues, wiil this have ...
0
votes
1answer
9 views

maxevents parameter in epoll_wait() and the events array size

In epoll usage, it is usually like the following: struct epoll_event ev,events[20]; epfd=epoll_create(256); 。。。 nfds=epoll_wait(epfd,events,40,500); Some articles are saying that the maxevents ...
0
votes
0answers
10 views

Api Twitter and Spring.NET Social someone help me?

I am using Spring for net library and its development for the social network Twitter, my problem is this: TwitterProfile profile = twitter.UserOperations.GetUserProfile ("blabla"); Label1.Text = ...
0
votes
1answer
20 views

dup return error (c programming in linux)

I'm trying to create a simple program which simulates the "ls -l | tail -n 2" call in terminal. I'm using "fork" and "execvp" for that purpose. Well, here is the code: int main(int argc, char ...
1
vote
4answers
74 views

longest common subsequence: why is this wrong?

int lcs(char * A, char * B) { int m = strlen(A); int n = strlen(B); int *X = malloc(m * sizeof(int)); int *Y = malloc(n * sizeof(int)); int i; int j; for (i = m; i >= 0; i--) { ...
0
votes
1answer
14 views

Linking with another start-up file

I am trying to link a program with my own start-up file by using the STARTUP directive in a LD script: ... ENTRY(_start) STARTUP(my_crt1.o) ... GCC driver is used to link the program (not to bother ...
3
votes
3answers
54 views

Making a void* within a struct point to an integer

I have a struct as follows: typedef struct Node { void* data; unsigned long id; NodePtr next; NodePtr prev; } Node; It is meant to be a node in a linked list ADT. I have 2 different ...
0
votes
0answers
18 views

Scan for wireless stations

I'm developing a basic program for multicasting frames on a wireless network to determined stations, based on some rules. I use lorcon to handle the injection part, but I also need to look for which ...
0
votes
1answer
36 views

Grouping child processes with setgpid()

I just don't get the whole thing. My process tree: 0 / \ 1 2 / \ 5 3 / 4 I want to make a process group (3, 4, 5), and send this group a signal from, ...
1
vote
5answers
72 views

is there any consequence if I do assignment but not memcpy after malloc

in the following program: int main() { struct Node node; struct Node* p = (Struct Node*) malloc(sizeof(struct Node)); *p =node; printf("%d\n", *p->seq); } usually I did memcpy(p, node, ...
-1
votes
3answers
45 views

Getting error with multidimenstional arrays in C

So, I decided I was going to make a little ASCII art game, however, when I declared the board, I get the error "array type has incomplete element type." Any idea on how to fix this? #include ...
-1
votes
0answers
33 views

How to get send response through a pipe in C, Linux?

I need to make a client - server application where the username is sent to the server, and the server returns the number of processes executed by that user. I need to do this using pipes. This is ...
0
votes
1answer
59 views

How to initialize a variable with a line from a bidimensional array in C?

can somebody help me with this problem: I have a line i, an unidimensional array p and a bidimensional array(matrix) Q. So, the problem is that I must initialize the unidimensional array p with the ...
2
votes
0answers
47 views

6 element double precision vector matrix vector multiply in AVX

I need to do the following operation in double precision: The numbers represent how the values are stored in memory. I want to implement this with AVX. Would it be best if I padded the columns of ...
-6
votes
0answers
84 views

Why do C and Java treat the following loop differently

in C #include <stdio.h> int main(){ int x=100; x=x++ + x++; printf("x : %d\n",x); // prints 202 return 0; } in Java class Demo{ public static void main(String ...
1
vote
1answer
17 views

What is the effect of leaving the call setsid() when creating daemon processes?

What are the perils of not calling setsid() when daemonizing a process?
0
votes
0answers
9 views

Calling Valgrind programatically (execing) produces no profiling data

My app has a process A which fork/execs another process B, and the child B then loads a shared library. I want to run Valgrind only on the child process B. Process A also ptrace's process B. I tried ...
2
votes
1answer
48 views

Linux thread id comparison

So, I'm having a very bad time finding a current thread id in a list of structures, which reflect information about threads. Basically, each element from the list has a field pthread_t id. My search ...
-4
votes
1answer
27 views

C Check duplicate string entries

I need to check if in my file there are duplicates entries, in C. Sample file: /proc/proc1 1000 /proc/proc2 2000 /proc/proc1 3000 I need to solve like this: /proc/proc1 1000 3000 /proc/proc2 2000 ...
0
votes
5answers
65 views

Can ASCII code for a char be printed in C++ like in C?

As we can print the ASCII code and increment it in C --> e.g: { char ch='A'; ch++; printf("%d",ch); } this will output "66" on the console. How can this be done in C++ ??
0
votes
0answers
21 views

Different outputs in Valgrind across multiple machines

In machine A for some reason I get a bunch of: ==21855== Invalid read of size 4 ==21855== at 0x422A26F: ??? (in /lib/i686/cmov/libc-2.11.3.so) ==21855== by 0x4216E2F: vsnprintf (in ...
2
votes
1answer
34 views

How are Header file (.h), Library file (.lib) and DLL (.dll) files related

I have seen in driver libraries these three files. How are the three files related, what is the order in which the files are compiled and what is the content of each file? In addition to this I have ...
0
votes
0answers
33 views

Leal instruction in for loop

I'm reading a book Computer Systems: A Programmer's Perspective (2nd Edition) and Practice Problem 3.23 are little confused me: A function fun_b has the following overall structure: int ...
0
votes
0answers
33 views

Can not kill a process waiting on stdin

I want to kill a process including its child processes in C program, by calling kill(0, SIGKILL); But this doesn't work when one of its child processes is waiting on stdin. How can I kill a ...
-3
votes
1answer
40 views

fgets () segmentation fault [closed]

I have a simple code in c that read from file one line and print it till exist any line but when i want to run it on linux mint a get segmentation fault the code is: # include <stdio.h> int ...
0
votes
1answer
20 views

how to program a pic chip to remember a specific input?

I am putting together a circuit that allows the user to tell a car how many spaces to go forward/backward, and how many spaces to go left/right. To do this, i have figured out i would need some sort ...
0
votes
1answer
32 views

Error: Exited: ExitFailure 45

I tried to solve project euler's 10th question using an somewhat-optimized algorithm for finding prime numners #include<stdio.h> #include<math.h> long long int main() { int flag =1; ...
-5
votes
3answers
45 views

Call a function while setting value of a declarement [closed]

I want to call a function while setting a value. For example: int i; i = 123; //Here i want to call a function. //Want to do this: //i = 123;func(); //But i do not want to do like this. Can i add ...

1 2 3 4 5 1921