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
15 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 ...
0
votes
0answers
11 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
61 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
9 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
7 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
35 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
0answers
17 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
...
-2
votes
0answers
31 views
bubble sort for a multidimentional string
This program reads the number of words and words then sort the words alphabeticlly. It works perfectly; I want to transform my code to a function that gets the number of words and the words then sort ...
0
votes
5answers
47 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
15 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 ...
0
votes
1answer
22 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
19 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
29 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
34 views
fgets () segmentation fault
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
17 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
31 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;
...
-4
votes
3answers
44 views
Call a function while setting value of a declarement
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
24 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
1answer
71 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 ...
0
votes
1answer
66 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
10 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 ...
0
votes
1answer
29 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
0answers
20 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
53 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
22 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
62 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
32 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
60 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
40 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
18 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
56 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
35 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
49 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 * ...
0
votes
0answers
30 views
Reading from FIFO(named pipe) in While loop without body
im trying to make a tic tac toe game with server-client in c.
On the server side i have to read from FIFO(named pipe) 2 pids.
so i made a loop that run until the read (from fifo) return value ...
1
vote
1answer
57 views
Python is passing 32bit pointer address to C functions
I would like to call my C functions within a shared library from Python scripts. Problem arrises when passing pointers, the 64bit addresses seem to be truncated to 32bit addresses within the called ...
4
votes
7answers
161 views
Necessity of Increment/Decrement Operator in C
My doubt is about the usage of Increment/Decrement Operators (++ and --) in C (Also in C++). Is it absolutely necessary to use ++ and -- in programs?
For example consider the code given below,
int ...
0
votes
2answers
59 views
Bitonicsort C code segmentation issue
I am running a bitonic sort sequential code on a machine. It runs fine for array size upto 16 elements but as soon as i increase the size to 32 It gives the following error while execution:
" ...
3
votes
2answers
38 views
Post-increment operator in C
I was casually coding when I wrote this C code:
#include <stdio.h>
int main()
{
int i;
i = 10;
printf("i : %d\n",i);
printf("sizeof(i++) is: %d\n",sizeof(i++));
printf("i : ...
0
votes
2answers
36 views
strange behavior in character string and pipe
I have a program:
int main()
{
int* p_fd = (int*)malloc(2*sizeof(int));
char buf[100];
pipe(p_fd);
write(p_fd[1],"hello", strlen("hello"));
int n;
n = ...
0
votes
0answers
35 views
Very fast COM port read
I'm reading from a COM port at a high speed (3,686,400 b/sec). In order to accomplish this I have to read with 512-byte blocks and significantly increase my timeout (to 1000) so that I'll get a whole ...
-2
votes
0answers
49 views
c pthread global variables - no write access / no update
I have a problem writing global variables in pthreads.
Some variables defined in the head of my code ->
int iPlcWriteReal;
I created some functions and called them over the pthreads.
In the Main ...
3
votes
2answers
55 views
Wrong printing in C function
I'm writing a small function in C that receives a char* and prints it by "slow motion", meaning each char after a certain time, thus making it look like a typing animation.
My code is:
void ...
0
votes
1answer
30 views
SetWindowLongPtr returning ERROR_ACCESS_DENIED
I am still struggling with hooks.
My goal is:
Set a hook in notepad.exe
Subclass it (my final goal is to subclass the Edit class and show the content in my own window)
Disclaimer: I know there ...
5
votes
5answers
69 views
In C how is this parameter declared in the function?
I am trying to learn the basics of C using 'The C Programming Language - Brian Kernighan and Dennis Ritchie'
In the program below, I don't understand where the value for 'maxlineLength' comes from?
...
0
votes
1answer
19 views
Using glib and gtk+ to control ftdi device over USB
I am developing a simple application in C with GTK+2.0 GUI, on Linux of course, this application is designed to control a device which is connected over the USB port and is using FTDI driver to ...
0
votes
0answers
14 views
Implement ASN.1 description
I wrote this ASN.1 description
Demo-module DEFINITIONS ::= -- Module-name DEFINITIONS ::= BEGIN
BEGIN
ClientFirstRequest ::= SEQUENCE {
clientInt INTEGER
}
...
8
votes
2answers
112 views
int.__mul__ , executes 2X slower than operator.mul
If you look at the following timings:
C:\Users\Henry>python -m timeit -s "mul = int.__mul__" "reduce(mul,range(10000))"
1000 loops, best of 3: 908 usec per loop
C:\Users\Henry>python -m timeit ...
0
votes
2answers
31 views
Always print EAGAIN when calling accept after epoll_wait
I'm using epoll to monitor the listen fd event, after the EPOLLIN event occur I call accept to process,
but always EAGAIN error. Anyone can give me some suggestions? thanks!
[log] print the ...
-1
votes
0answers
59 views
Increment (Pre + Post) operator in C++ [duplicate]
I've some confusion in the using increment operator in C++. I'm not exactly a beginner but this is something I never came across before but here's the question.
int i=20;
cout << (++i) + (++i) ...


