-3
votes
2answers
52 views

printf a variable in C [closed]

#include <stdio.h> #include <stdlib.h> int main() { int x = 1; printf("please make a selection with your keyboard\n"); sleep(1); printf("1.\n"); char input; scanf ("%c", &input ...
-2
votes
1answer
37 views

How to access variable across files in C? [duplicate]

I have a file1.c and file2.c. If I define a variable in file1.c, and assign a value to it, how can I access this variable from file2.c? How should I declare the variable in file1.c and how to ...
3
votes
6answers
87 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 ...
1
vote
4answers
47 views

Solving a Variable Equation defined by the User

Answers in C, Python, C++ or Javascript would be very much appreciated. I've read a few books, done all the examples. Now I'd like to write a simple program. But, I already ran into the following ...
-1
votes
4answers
63 views

What value does a static variable store when inputted into?

#include<stdio.h> char *getname() { static char name[30]; scanf("%s",name); return name; } void main() { char * name1,*name2; name1 = getname(); name2 = getname(); ...
1
vote
3answers
101 views

Normalizing variable names C/C++

I am currently working on a tool, that will compare two files and report its differences. I want to implement a feature that will compare two methods, and report if they are identical (while ignoring ...
7
votes
6answers
119 views

What happens here? sizeof(short_int_variable + char_variable)

#include <stdio.h> int main() { short int i = 20; char c = 97; printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i)); return 0; } ...
-2
votes
2answers
81 views

Can bit-fields only be fields of a structure/union, never “normal”, “stand-alone” variables?

The field part of bit-fields seems to suggest that they can only be fields inside a structure or union. Can a bit-field be a typical "stand-alone" variable, outside any aggregate data-type like union ...
4
votes
3answers
123 views

more efficiency way to write if-conditionals with repetitive variable

I'm looking for a more efficiency way to write those kind of if-conditionals: a = huge_term >= b ? huge_term : c or (a = huge_term) >= b ? a : a = c The second one is quite shorter but the ...
1
vote
1answer
19 views

C Parent/Child exit variable

I am working on a program and learning about parent/child processes. Currently my childprocess does exit(variable); in my main() I have: signal(SIGCHLD, chldHandler); outside my main() I have: ...
0
votes
2answers
53 views

How to calculate total of an increasing variable

If there's a variable called a, that's constantly counting up, but resetting to 0 when it hits a certain number, how can I calculate the total of that variable? For example: int count = 0; ...
1
vote
3answers
60 views

declaring variables of storage classes

As I was coding, I was declaring the following: const int a = 4; Is "a" a variable that the compiler won't let me change? or would I need static const int a = 4? Thanks!
1
vote
3answers
54 views

Where are Parameter variables stored in memory?

I am writing some code in C and when coming across a method I wondered where parameter variables were stored in memory. I know the following: global variables -> stored in code section of static ...
1
vote
5answers
156 views

different types of Static in C

I know there are three types of static declerations in C: 1: Constant - constant static variable, ex: static const int i = 5; 2: Changable - just a normal static variable, ex: static int hi = 10; ...
2
votes
3answers
64 views

Argument variables in C

I am writing a method that takes in a number n and n ints(a variable number) and this function will return the sum of the ints not including n. I am stuck on how to access each paramater individually. ...
2
votes
1answer
67 views

Performance: Reference vs. value as function parameters

I have got a function which I need to pass a value to for read-only purposes only. For example: unsigned short strlen(String str) { short i = 0; while(str[i] != '\0') i++; return i; } As ...
0
votes
2answers
44 views

sending array index value to an int c

I'm trying to get the value from array[i][] where i is the value that I need and want to store it in a variable that is going to be used for different things. I'm not sure how I would go about doing ...
0
votes
1answer
52 views

Variable change in loop

So this is more of a theoretical question but here goes. Say I have the following C code: for(parameter) { //do something if(condition) { variable = Value; } } Say the loop ...
0
votes
1answer
26 views

Eclipse CDT: How to find all the places that a variable is modified

Is it possible in Eclipse CDT to do a search on a variable name and only show results where a variable is modified or potentially modified? For example, the variable appears on the left-hand side of ...
-1
votes
0answers
104 views

How many variable/buffer overflows are there in this C programming code?

#include <stdio.h> #include <string.h> #include <limits.h> int main(int argc, char *argv[]) { FILE *fp; char filename[128]; char strings[USHRT_MAX][50]; unsigned short cnt = 0; ...
6
votes
2answers
176 views

C memory management in gcc

I am using gcc version 4.7.2 on Ubuntu 12.10 x86_64. First of all these are the sizes of data types on my terminal: sizeof(char) = 1 sizeof(short) = 2 sizeof(int) = 4 sizeof(long) = 8 ...
0
votes
1answer
42 views

Variably modified array at file scope and subscripted value is neither array nor pointer

I have the following code for calculating n-queen puzzle using pthreads. But when I try to compile that code I get the following error message: wikithread.c:7:5: error: variably modified ‘hist’ at ...
0
votes
2answers
45 views

Weird behavior of gettimeofday

I would like to obtain the elapsed time between one thread enters to the Critical Zone and the other takes the permision to enter in the same Critical Zone on ARM CortexA8. For this I have been using ...
0
votes
2answers
88 views

constant expression required

unsigned char rtc_time[6] = { pThis->hoursTens, pThis->hoursUnits, pThis->minutesTens, pThis->minutesUnits, pThis->secondsTens, pThis->secondsUnits }; Does not compile. I receieve ...
0
votes
1answer
63 views

how to declare and initialze an integer variable

I want to declare some variables in MIPS(Assembly) and initialize them.I am parsing a C file.I initialize the variables like this: .data .text .globl main .align 2 a: .space 4 main: ...
0
votes
2answers
67 views

How to read each individual lines of a text file into their own individual variables

Hi guys I am in the second weekend of trying to find the solution to this problem. I am new at c programming and I have been trying to read each individual line of a text file and pass each of them to ...
0
votes
2answers
34 views

How to create a data type of a given size

I would like to create a struct of size 508 bytes. Viewing this code I inferred I could create a struct of any size I want. #include <stdint.h> /** * Common Data Types * * The data types ...
0
votes
2answers
66 views

posix threading in C condition variables

I've done my share of reading of condition variables, and I am simply stuck not being able to comprehend on how to use them. I have a tree, who as of now, when you make an insertion for a node which ...
0
votes
1answer
53 views

Condition variable misconception

Suppose I have a tree and suppose I have a condition variable in each node of the tree. Let's suppose 5 nodes were trying to insert into my tree(which already has 10 nodes)and for a reason, the 5 ...
0
votes
3answers
57 views

How to compare nlink_t to int

I use stat system call on Linux and retrieve file information. char *parent_dir; // for example: /run/atd.pid/ struct stat buf; stat(parent_dir, &buf); buf structure type: struct stat { ...
1
vote
1answer
55 views

explain why the location of a variable's declaration disables me from changing its value

I have a variable that behaves differently depending on where I declare within the same function. I would like to understand what is happening. In this function I have included the variable ...
1
vote
1answer
40 views

pass a value to another c file

I have a A.c file that contains some char* variable str1. I have a B.c file that contains some f() function, that make some transformation on a char* variable. My point is: How can I pass the value ...
1
vote
2answers
78 views

C - Static Array with length defined by a variable

I'm actually working on an assignement in C, and for the need of my implementation, I need to use a static array, let's say static int array[LEN]; The trick is that this array length, LEN, is ...
0
votes
1answer
25 views

Variable Filenames and Curlib

What I want to do: I am trying to write a c program that will download a file from a URL and save it locally, I found the following guide and it does exactly what I want as long as I hard code the ...
0
votes
5answers
170 views

C: Passing variable number of arguments from one function to another

So, here's a small problem I'm facing right now -> I'm trying to write a function that will accept a char* message and a variable number of arguments. My function will modify the message a little, and ...
1
vote
3answers
115 views

What does ** mean in C/C ? [duplicate]

I am reading a c++ code and came across this line: mem_cMemRow ** ppMemory = (mem_cMemRow **)malloc(//size of some structs); It seems to me that ** reserves some amount or portions of the ...
-1
votes
2answers
48 views

large numbers with printf [closed]

I have to write a C program which computes some values. Actually there should be no problem and my program works for small numbers, but when I try to print large numbers like 2^32 for example it ...
0
votes
1answer
20 views

How to get variables out of a text file from an install in C

Is there any way I can get variables from an install, such as the user's name and phone number and printf them in the program? How would I go about doing this? Windows based program.
0
votes
1answer
84 views

Why does static variable not allow loop() to run?

I am writing code for an lamp that mimics the sun (ie rises and sets according to the real sun). I am trying to use a static variable in the loop in order to keep count of the days since 1/1/12 (the ...
0
votes
1answer
118 views

changing value of variable in an array (C Programming)

basically what I want to do is to take my three temperature sensor readings that i have declared and lump them into an array. from that point I want to be able to increment the value of each ...
0
votes
2answers
93 views

how do I increment the value of a variable in an array (C programming)

I have been fiddling with my code for the last hour or so but i can't seem to get it working the way that I want to. I have been reading about the idea of arrays being fixed states, but to be honest ...
-1
votes
4answers
150 views

Program that detects which letter is the most common

I am a beginner in C, I am trying to make a program which detects which letter is the most common of max 10 letters. Here is what I've got so far: char one = 'a'; //0110 0001 char check[10]; ...
1
vote
8answers
192 views

When is memory allocated to local variables in C

As local variables are also called automatic variables, and are supposed to be allocated memory at run time, when function is accessed. int main(){ int a; // declaration return 0; } int ...
5
votes
2answers
161 views

Variable scope inside while loop

This is perhaps one of the most odd things I've ever encountered. I don't program much in C but from what I know to be true plus checking with different sources online, variables macroName and ...
1
vote
6answers
185 views

Uninitialized variable in C

I'm a little bit confused. As far as I know, if you declare an int in C, without initializing it, for e.g: int x; so its value is indeterminate. So if we try to use it or should have undefined ...
-1
votes
4answers
114 views

C - Function Values not passing properly for one of two integer values

So here is the code - I know something simple is wrong with it but I cannot seem to figure it out. I've tried different number types, pointers, and other ish....the variables b and c have the correct ...
1
vote
3answers
93 views

Dynamic global variables in C

Can someone please explain to why this won't work: int DIM = 128, hDIM = DIM/2 , dDIM = DIM*2; int main(int argc, char **argv){ DIM *= 2; printf("\n Double DIM is %d \n",dDIM); } Why ...
2
votes
2answers
94 views

Lvalue required error in C

my code is: #include<stdio.h> int main() { int a=10, b; a >= 5 ? b=100 : b=200; printf("%d %d", a, b); return 0; } Here comes a "Lvalue Required" in the line of conditional ...
4
votes
4answers
55 views

Duplicated identifier for a variable in function local scope

So, this is code from a student of my friend… #include <stdio.h> int main(){ int hours; int take_one_number(void);{ scanf("%d",&hours); } int minutes; int ...
0
votes
1answer
94 views

C programming variable in an other variable

i have a problem, i would need to send some data to a socket, the data is stored in an char variable (lets call it variable A), but some things in this data are changing, is it possible to insert ...

1 2 3 4 5 8