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
vote
0answers
23 views

What's the runtime of this algorithm?

I just wrote an answer to a question: longest common subsequence: why is this wrong? but when I tried to figure out the runtime, I realized I didn't know. Consider the code to be C pseudocode. It ...
1
vote
0answers
14 views

Write error in TFTP implementation in C

Goal: Transferring a file from client to the server. Environment: Linux Problem: When writing files from client to the server, the server copy is a lot several thousands bytes less than the ...
3
votes
6answers
63 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
27 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
34 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?
0
votes
1answer
26 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
6 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
18 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
59 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
52 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
16 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
0answers
27 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
70 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
57 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
41 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
81 views

Why do C and Java treat the following loop differently [closed]

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
44 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
62 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
32 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
28 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
39 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
19 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
44 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 ...
0
votes
1answer
27 views

write pointers to pipe, are there any strict aliasing or pun type issues?

I need to create many FIFO queues in a program, which is used for communication between threads in the same process. I think I can use pipe() for this purpose, because in this way, I can use select ...
0
votes
3answers
89 views

sorting strings with bubble sort algorithm

This code stores the number of words in an integer variable and the words in a multidimensionnel string then sorts the words alphabetically using a function. The problem I have is in the function ...
-1
votes
1answer
69 views

What is the difference between these two strings? [duplicate]

PART 1 I have 2 strings and they are defined in following ways- char s1[] = "foo"; char *s2 = "foo"; When I try to change a character of these strings, say, the 2nd character - char s1[1] = 'x'; ...
0
votes
0answers
12 views

C dissecting protocol level 3 and application and url name in packet hex values?

We are able to capture the whole packet hex values. The issue now from the hex values we want to dissect the level 3 protocol, application level protocol and also if the url value is present in the ...
1
vote
2answers
34 views

shmat returns segmentation fault(core dumped)

Im trying to write into shared memory but for some reason after i call shmat() and strcpy i get segmentation fault(core dumped) why is that? This is my code: int fd,shmid; key_t shmkey; char ...
0
votes
1answer
31 views

Graph handling library

I need to find a library for representing and drawing graphs in C (not C++). I wish to find one with a GPL licence. I have to build dynamically some graphs, and draw it. It would be perfect to find a ...
-1
votes
3answers
57 views

How does this loop end?

code example like this: #include<stdio.h> void main() { char *s={"abcd"}; do { printf("%d\n",++s); } while(*s); } Where does the pointer s point when the loop do ...
3
votes
1answer
23 views

What is the simplest RGB image format?

I am working in C on a physics experiment, Young's interference experiment and i made a program who prints to file a huge bunch of pixels : for (i=0; i < width*width; i++) { ...
3
votes
1answer
68 views

How does Non - local Jumps in C defined in setjmp.h work?

The C Reference Manual, Appendix B describes two functions setjmp and longjmp for something called non-local jumps. Apart from the basic understanding that setjmp saves the state information and ...
1
vote
1answer
37 views

Cant link assembly and c

I have problems with linking c and assembly code. Tried to search some solutions, but none of which I found worked for me. c file "l3.c" looks like this: #include <stdio.h> #include ...
0
votes
2answers
62 views

How to make three processes work in C/C++

I have to make three processes A, B and C that use shared memory. A and B write 100 integers in the shared memory, and C reads them and writes them to a binary file. That is what I made, but it ...
0
votes
1answer
42 views

C Reference Manual Appendix A - Meaning of declarators

While reading through the C reference manual, specifically Appendix A, I found the following statement In a declaration T D where D has the form ( D1 ), then the type of the identifier in D1 is ...
0
votes
0answers
20 views

Reasons for omp_set_num_threads(1) slower than no openmp

I believe everyone agree with the title of this post. Can someone point me the reason ? Any reference to that like book etc ? I have tried to find but no luck. I believe the reason is something about ...
3
votes
1answer
40 views

Counting processes after fork in for loop

I have the following code: for(i=1; i<=2; i++) { fork(); printf("x "); } I calculated that x should be printed out 6 times: twice in the first iteration and 4 times in the second. ...
0
votes
2answers
57 views

How to send a signal to all process from child process?

I 'm trying to do a socket programming example with using fork() call, my problem is: When a child process finished a job, i want to kill all other process. I think if i send a singal to others ... Is ...
0
votes
1answer
38 views

Allocate memory for huge node tree dynamicly

I'm trying to make a function that allocates memory in blocks and than is able to assign a memory pointer for different structures linked together. #define MEMSIZE 50*1024*1024*sizeof(char) #include ...
0
votes
2answers
52 views

Memory leak on returning pointer

I am facing a memory leak condition in the following functions. char * readdatafromfile(unsigned pageNumber) { char *buff = (char*) malloc(sizeof(char) * pagesize); lseek(fd, pagesize * ...

1 2 3 4 5 1921