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

0
votes
0answers
13 views

Disagreement with Professor

Program Design, our first homework assignment was to take 4 integer values, add the 2 highest together and subtract the lowest two and square that result. Finally, compare the 2 values together to see ...
2
votes
2answers
23 views

concatenate variable onto another variable

const char *SITE_NAME = "test"; char SITE_ROOT[19]; sprintf (SITE_ROOT, "/var/www/html/%s", &SITE_NAME); I can't figure out why I'm getting an error of: error: expected ‘)’ before string ...
1
vote
3answers
32 views

Why \001 is added when strcat is invoked

Look at the following code: char chs[100] = "Hello World"; char token[100]; int pos = -1; while((current = chs[++pos]) != '"'){ strcat(token, &current); } But the output is : ...
2
votes
5answers
65 views

Function pointer with (void*)

In C what's the function pointer (void*) doing in: int (*fn) (void*) If the parameter is nothing then it should be: int (*fn) () My understanding is void* is chunk of memory. void* mem ...
1
vote
2answers
20 views

GDB breakpoint when system calls a script

I have the function system() call a separate script that has already been compiled. But I'd like to be able to set a breakpoint in functions within THAT specific file. So: File A: system(./fileB); ...
1
vote
0answers
12 views

Add text/annotation to PNG image using C

I've written a small tool in C that generates images from data out of a database. The images are in PNG format and now I need to add some text to the image. I can't find any examples on how to create ...
0
votes
0answers
8 views

Serialization and Des-Serialization of structure and text file

I am doing serialization of a structure in C but I am having a problem which I can figure it out:s The code is a bit long but I think it is ok to understand. This is the top level structure I am ...
1
vote
1answer
17 views

Undefined reference to `PyString_FromString'

I have this C code: ... [SNIP] ... for(Node = Plugin.Head; Node != NULL; Node = Node->Next) { //Create new python sub-interpreter Node->Interpreter = Py_NewInterpreter(); ...
-1
votes
0answers
22 views

Function in C to calculate sin of an angle via Taylor series [closed]

I know that's a very easy question using the math.h library. But I need to write a function to calculate the sin of an angle(in rads), using Taylor's Series without using the math.h library. Could ...
0
votes
1answer
31 views

Creating a list of objects from the struct

My program will be a list of names and surnames. I have a a struct which has attributes of name, surname, and a pointer to the next struct object. In for loop I will add a new items to this 'list', ...
0
votes
2answers
27 views

difference between Java TCP Sockets and C TCP Sockets while trying to connect to JDBC

My problem is that C sockets look to act differently than Java sockets. I have a C proxy and I tested it between a workload generator (oltp benchmark client written in Java) and the JDBC connector of ...
0
votes
2answers
35 views

Unix Processes - compile and run c program

Create a parent process that gets from the command line n arguments arg1, arg2, ... , argn. arg1 is the name to a source C, arg2 is the name of the executable file results from compile arg1, and arg3, ...
0
votes
2answers
26 views

Handle end of execution

I'm making a little program using a lot of forks. The first parent have to wait for everychilds. For only one child it's easy, there is the child-end signal (SIGCLHD). But what if my first child ends ...
0
votes
2answers
18 views

C- Multiple Definitions and Undefined References with SDL

I have googled solutions to my error, but it never seems to solve my problem. I'm not sure where the issue is because the #includes seem to check out. Thank you for your help. Error: gcc test.c -c ...
0
votes
1answer
36 views

Setting a char array from the struct with another char array

I have the struct: struct person { char firstname[]; }; And the method: void abcde (person* a, char firstchar[]) { a->firstname = firstchar; } The gcc throws this: incompatible ...
3
votes
1answer
32 views

Storing each line of a file in a C struct but ignore an part of the line after a //

I am writing a program in C that needs to store each line of a text file in an array of structs however it needs to ignore the line after a "//" sign (i.e. a comment). I have been able to get it to ...
-2
votes
2answers
64 views

Get all functions and their length in a c program

I'd like to be able to analyze a .c file and List all the methods in the file List how long each method is in lines IE: If the file was (Using Pseudo-code): int add(){ ....Function Actions 1 ...
-3
votes
1answer
67 views

Indexing your C function

I'd like to know if there is an easy way to create a list or index of the C or C++ functions in your program so you can generate lists or tree-structures to be used in a GUI. Ultimately, I want to be ...
-3
votes
0answers
27 views

Test nvram by using read/write

An interview question.. 1. Write an API for read function and write function to NVRAM. 2. Use these function to write a testNVRAM function, that tests the read and write. Any ideas?
0
votes
1answer
18 views

Trying to send variables to functions - pointer issues

I have this code: http://pastebin.com/fhbxMNSf What I am trying to say is that I am trying to send variables keyword and key_length to function and I want to use them in that function. I am unable to ...
1
vote
1answer
27 views

“Rules” to use global or not variables

I have some question to use of globals variables in the C programming language. I've never too many as theses days to don't use globals variables anymore. So,my question is: when use or not global ...
0
votes
1answer
46 views

C - Merging two lists of strings

I currently have this algorithm: char** mergeLists(char **a, char **b, int sizeA, int sizeB, int *lSize) { char **list = malloc( sizeof(char *) ); int pA = 0, pB = 0, listSize = 0; while ...
0
votes
2answers
44 views

Endless loop in C while scanning file

I am trying to scan file by using while loop: while(feof(src_file) == 0){ } This method works perfectly fine if there is only one row in scanned file. Otherwise, I get an endless loop. Why is that ...
0
votes
1answer
33 views

Incorrect MAC printed in C code

I have this code which should print the Destination and Source MAC address of each packet from a socket i am listening on: sock_raw = socket(AF_INET , SOCK_RAW , IPPROTO_TCP); if(sock_raw < 0) { ...
1
vote
0answers
22 views

how does a c program map/resolve to a domain (eg in proxy servers etc)

I want to create a simple C program- and then map it/make it resolve to a specific domain on my server that has multiple domains. How do I do this? (1) Do I map/resolve the domain as usual using a ...
0
votes
2answers
31 views

C adding one char to buffer

I would like to ask how to add one char to a buffer. For example: char buffer[50]; char one_symbol; How to add one_symbol to buffer? I don't know how long the buffer is at the time, so I cant just ...
-1
votes
0answers
66 views

Why do different C programming environments produce different macro side effects?

I am working on a homework assignment and we are studying macros and side effects. One of the questions asks why the output values of the program could be different when using GCC programming ...
0
votes
1answer
46 views

how to write this in C

how to write this ASM code in C? loc_536FB0: mov cl, [eax] cmp cl, ' ' jb short loc_536FBC cmp cl, ',' jnz short loc_536FBF loc_536FBC: mov byte ptr [eax], ' ' loc_536FBF mov cl, [eax+1] inc eax ...
2
votes
2answers
48 views

fflush doesn't work

Why fflush doesn't work to c2 and c0? If I use the declaration c0=0 and c2=0 it works, but fflush (stdin) doesn't work, I tried to put in different places but it did not work, im using code blocks in ...
0
votes
1answer
40 views

How to manage memory returned from function in C

I want to make a tokenization sub-program which will work like this : Read user input Find tokens Use a substring function to get each token Store each token in a struct The idea was simple ( i ...
0
votes
2answers
49 views

Need help in pure c list implementation

I am trying to do linked list of persons in c. All my methods work in main() until I put them into while loop (for reading commands from user). Everything compiles, but when I try to run it, it ...
0
votes
2answers
37 views

Sorting two stacks by using structs - compile error

There are 3 stacks - A, B, C Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed: push, pop, top, is_empty, create We need ...
0
votes
1answer
37 views

C programming task, html source file

So I have this task: I have a source file of, for example news website, in which there are meta tags like <meta name="author" content="Go Outside">. And, as you understand, that source file ...
0
votes
0answers
55 views

struct tm - Why days start at 1 whereas months start at 0? [duplicate]

As you can see here in struct tm, days are 1 indexed while months are 0 indexed. The same can be seen in other languages like Java. What is the reason of doing this ? The only purpose I can find is ...
0
votes
5answers
70 views

Understanding this example program

Please help me understand this example program in C. #include <stdio.h> int i; int *tmp; void anotherFunction(void); void destroyStack(int); void main(void) { anotherFunction(); ...
0
votes
1answer
26 views

(C) Strange crash when using feof

char *headerString = strstr(line, "...\">"); printf("%d", feof(site)); //all is ok sscanf(headerString, "...\">%[^<]", tempQuestion.header); ...
0
votes
3answers
37 views

When to use malloc, is it really necessary

The malloc example I'm studying is #include <stdio.h> #include <stdlib.h> int main() { int *vec; int i, size; printf("Give size of vector: "); scanf("%d",&size); vec = (int *) ...
0
votes
0answers
38 views

Using pipes with multiple clients

I am trying to program the server side of a groupchat system using C whilst my friend is programming the client side. For each client connection the server receives, it forks a child process so as ...
0
votes
1answer
20 views

Why isn't my addToList method working right?

I'm new here and this is my first question: Here is my code: #include<stdio.h> #include<stdlib.h> #include<string.h> struct Person{ char *vorname; char *nachname; ...
0
votes
0answers
12 views

Can i treat desktop backgrount like a window using gtk or xlib?

Part of a school project is to figure out if you can use the Ubuntu desktop like an ordinary window, and draw to it, put buttons, etc... Is there any toolkit that doesn't just change the desktop ...
0
votes
1answer
36 views

Matrix multiplication by it's transpose returning zeros matrix?

I'm multiplying a matrix by it's transpose and I'm getting a zeros matrix. I am multiplying other matrices and not having any problems. I've tried this both with cvMul and cvMulTransposed and always ...
6
votes
2answers
145 views

C vs. C++ for numberic simulation (performance)

I am about to write an off-lattice diffusion limited aggregation (DLA) simulation and I am wondering whether to use C or C++. C++ would be nice for design reasons but I am wondering if C would ...
0
votes
0answers
37 views

With string arrays when reading from a file

I have a problem when trying to read from a .txt file, file example:"12345 qwe>rty 12345 q=wert qe/ry"trying to read more than 50 000 similar lines, compare them with another (also read from doc.) ...
1
vote
2answers
27 views

fread() doesn't work but fwrite() works?

Why fread() doesn't work but fwrite() works? If I get fwrite() into comments and fread() out of comments, the output file is of 0 bytes size... But if fwrite() is out of comments, the output file is ...
-5
votes
1answer
59 views

What do You think about learning these languages? [closed]

I'm a Software Engineering college student. I wanna learn these languages: 1-C 2-Assembly 3-C++ 4-PHP I like OS programming, but I like other types of programs,too. What do You think about these ...
1
vote
2answers
38 views

Can I use a Python/Ruby ORM inside C?

I have heard many times that C and Python/Ruby code can be integrated. Now, my question is, can I use, for example a Python/Ruby ORM from within C?
1
vote
3answers
36 views

A Makefile with Multiple Executables

I am trying to write a makefile which uses macros to create multiple executables from multiple files at once. I tried searching through previously answered questions but, because I am fairly new to ...
0
votes
1answer
28 views

Lamport logical clocks. How does it start working?

I understand that every process has a logical clock C, a->b if C(a) < C(b). But how do they start the processes to work? Here we have an image: Do they use messaging? We start at the process P1 ...
0
votes
1answer
19 views

Bootloader using mixed code using EXTERN

I am creating simple calculator application on bootloader using mixed code including C language with Assembly Code. My C language Code is (addasm.c): #include int main() { bootmain(); ...
0
votes
1answer
71 views

Expression in c

So I have the following expression int *(*table())[30]; In my opinion table() return a value which points to the beginning of an array of pointers which each element points to an integer. What do ...

1 2 3 4 5 1934