Tagged Questions
0
votes
2answers
61 views
In C, initializing an array using a variable led to stack overflow error or caused R to crash when code is called in R
Okay. My original question turned out to be caused by not initializing some arrays. The original issue had to do with code crashing R. When I was trying to debug it by commenting things out, I by ...
0
votes
3answers
70 views
Why is “int arr[n];” causing my program to hang when the index “n” is to be inputted later by scanf()?
Why does the following program program1,intended to print numbers 1-9 hang and closes abruptly even though it compiles without error?I suspect it has got something to do with the fact that I have used ...
4
votes
2answers
135 views
Neighbor index computation for diagonally flattened matrix
I have a 2D matrix stored in a flat buffer along diagonals. For example a 4x4 matrix would have its indexes scattered like so:
0 2 5 9
1 4 8 12
3 7 11 14
6 10 13 15
With this ...
1
vote
2answers
47 views
Link List pointer's position(index) troubles
Status ListDelete(LinkList *L, int i, int *e)
{
int j=0;
LinkList p=L,q;
while(p->next && j > i-1)
{
p = p->next;
j++;
}
if(!p->next||j>i-1)
...
0
votes
1answer
45 views
Database file structure and indexes and implementation
I have been reading about how database indexes are implemented and database files are organized from Silberschatz.
The description is about trees that point directly to disk blocks and describe how ...
-5
votes
1answer
91 views
c/c++ get index of the element which is adding into sorted array [closed]
I need function (no implementation, just basic idea)
int add(int * array, , const int len, const int val);
which is returning index, where the new element ( val ) is stored.
The sorting algorithm ...
1
vote
3answers
85 views
Am i accessing wrong (out of bounds) char array Index in c
Suppose we have a character array in c like,
char a[20];
Can we access index 20 to put terminating NULL like this.
a[20]='\0';
But in my algo. ("which is integer to char array converter") this ...
0
votes
1answer
54 views
how do I find the index inside a recursion
(in c programming)
I have another index question if you don't mind.
I use this function to find the highest number in an array of integers:
int Find_max(int *array,int n){
if(n==1) return ...
1
vote
1answer
124 views
index in c programming
I have a question about locating an index.
suppose I have a "relative" index in an array (that was allocated with malloc), or basically an index that doesn't tell me where I am really. how can I find ...
1
vote
2answers
83 views
how to find index of element in C with recursion
i have this, it checks if element is in list or not, but how get the index of element ?
// function that check if element is in list
int checklist(struct list *my_list, int n) {
while (my_list != ...
0
votes
1answer
189 views
Lua C API code not calling __newindex functions but calling other functions
I have written some code to separate registering custom functions and the __newindex and __index functions into 2 separate functions. The goal of my code is to have functions and variables visible to ...
8
votes
4answers
457 views
How can I access MySQL InnoDB index values directly without the MySQL client?
I've got an index on columns a VARCHAR(255), b INT in an InnoDB table. Given two a,b pairs, can I use the MySQL index to determine if the pairs are the same from a c program (i.e. without using a ...
5
votes
2answers
1k views
eclipse C project shows errors (Symbol could not be resolved) but it compiles
I have got access to a C project at work that I have to implement some stuff in. I was able to load it into eclipse and can Project -> Build All it. Compilation shows no errors or warnings. But in ...
4
votes
3answers
233 views
C - Pros/Cons of Enum-Indexed Arrays [closed]
In my experience, the real world rarely provides for indexes of nonnegative integers. Many things aren't even represented numerically. And many things with a numerically-represented index don't begin ...
1
vote
1answer
165 views
Returning and printing string array index in C
I've got a function that searches through a list of names and I'm trying to get the search function to return the index of the array back to the main function and print out the starting location of ...
4
votes
6answers
235 views
Declaring an array with 0 number of elements can still store values
I get that using negative indexes is just pure luck. But out of curiousity I tried this. I know you can declare array[0]; just like malloc(0); is legal. But how come I can store a value in array[0]?
...
2
votes
3answers
145 views
Why do arrays with negative indexes work? [duplicate]
Possible Duplicate:
Negative array indexes in C?
How come this compiles, and runs as intended? I'm confused. I was just curious what would happen and to my surprise. It worked.
#include ...
2
votes
3answers
435 views
Searching for duplicate values in an array
I am very new to C and I am hoping for some pointers. I am attempting to take an input of 7 integers of an array and search through them to see if any number appears only once. Here is what I have so ...
-1
votes
1answer
98 views
How i can save the value and index of the position in an array in ANSI C?
I just wanna know how i can save the value and the index for my array "cadenaNumeros" in a integer, if the user entry is something like this : 123456789 or 48934013 or 183853025... etc.
I was ...
0
votes
3answers
127 views
C to Python Anagrams
I am trying to learn Python. Consider this simple anagram checker in C:
bool are_anagrams(const char* str1, const char* str2)
{
int str1_count[NUM_CHARS] = {0};
int str2_count[NUM_CHARS] = {0};
...
3
votes
1answer
191 views
Indexed memory pointer arrays versus indirect integer index arrays in ANSI C
The statement
a[i] += a[j] * a[k];
will be executed thousands of times in a loop that may be executed thousands to millions of times. The indices i, j, and k, representing random access to entries ...
1
vote
4answers
769 views
access enum using index in C
enum Test
{
a = 3,
b = 7,
c = 1
};
I want to access the enum using an index, something like this
for(i=0; i<n; i++)
doSomething((Test)i);
Please let me know how can I do ...
0
votes
2answers
86 views
How can I rearrange the chars in a char*?
I have char* myChar = "HELLO". I would like to switch the places of the E and the O. I tried doing myChar[1] = myChar[4], but that doesn't work. Please help!
2
votes
1answer
199 views
Emacs regexp to increment/decrement array indices
Is it possible to use a regular expression to alter an array index in emacs?
e.g. for some C code change:
int my_array[4];
my_array[0] = 1;
my_array[1] = 2;
my_array[2] = 3;
to:
int my_array[4];
...
0
votes
1answer
98 views
File organization and manipulation in DB Systems
What are the C functions that allow to load blocks of records into RAM buffers, read/write records from/to blocks, and write blocks to disk?
6
votes
7answers
543 views
How come my array index is faster than pointer
Why the array index is faster than pointer?
Isn't pointer supposed to be faster than array index?
** i used time.h clock_t to tested two functions, each loop 2 million times.
Pointer time : ...
1
vote
3answers
72 views
How can PHP string indexed arrays be achieved efficiently in C++
I’ve been playing around with searching text in big lists and found that using a PHP array seems to be a quick way of doing it.
E.g. if you had loads of place names and associated postcodes you could ...
0
votes
1answer
88 views
How to persist C objects in memory in a Ruby extension between calls?
I am developing a web app in Rails that needs to perform computationally intensive data lookup and processing when responding to a request.
I have written a ruby C extension that performs this ...
1
vote
1answer
497 views
Eclipse resolving symbols but, not the “right” ones. How to exclude certain directories from index?
I am working with a HUGE code base, developed by a LOT of people. The code contains code for, lets say, multiple targets. I am working on Target L. Target specific codes are in individual directories. ...
1
vote
1answer
800 views
Nested loops to CUDA
I want to port my c code to CUDA. The main computational part contains 3 for nested loops:
for (int i=0; i< Nx;i++){
for (int j=0;j<Ncontains[i];j++){
for (int k=0;k< totalVoxels;k++){
...
7
votes
2answers
825 views
What's the most efficient bit vector compression method for my use case?
I'm working on a project in computational biology and I need to store an index of locuses that differ between many sequences. For now, I'm using a B+Tree for that purpose, but I guess using a bitmap ...
10
votes
7answers
3k views
C negative array index
this is my struct :
struct Node {
struct Node* data;
struct Node* links[4];
}
assuming there is no padding, does Node->links[-1] guaranteed to be pointing on Node::data ?
1
vote
1answer
654 views
C Program - Build an index file from another file
I have a .bin file that contains records in CSV format what I want to do is assign each record in the bin file a sequence number. So the first record in the bin file would be assigned 0 and so on. ...
2
votes
5answers
1k views
How to access the first character of a character array?
#include <stdio.h>
int main(void){
char x [] = "hello world.";
printf("%s \n", &x[0]);
return 0;
}
The above code prints out "hello world."
How would i print out just "h"? ...
2
votes
3answers
1k views
In C how do I find the index of a character within a string?
Suppose I have a string "qwerty" and I wish to find the index position of character e in it. How do I do it in C? (In this case the index would be 2)
I found strchr function but that returns a ...
6
votes
4answers
2k views
Type for array index in C99
What type for array index in C99 should be used? It have to work on LP32, ILP32, ILP64, LP64, LLP64 and more. It doesn't have to be a C89 type.
There are 5 candidates:
size_t
ptrdiff_t
intptr_t / ...
6
votes
3answers
2k views
How can I get Eclipse to index code inside #ifdef … #endif
I'm using eclipse to work on some c code and it is not indexing code inside conditional compilation blocks like this:
#ifdef USE_FEATURE_A
int feature_a(...) {
some = code(here);
}
#endif
How ...
6
votes
1answer
1k views
C - how to convert a pointer in an array to an index?
In the many search functions of C (bsearch comes to mind) if a result is found, a pointer to the spot in the array is returned. How can I convert this pointer to the index in the array that was ...
1
vote
2answers
616 views
PostgreSQL - CREATE INDEX
I'm working with PostgreSQL to create some data types written in C.
For example, I have:
typedef struct Point3D
{
char id[50];
double x;
double y;
double z;
Point3D;
}
The ...
3
votes
6answers
5k views
Is there a function in c that will return the index of a char in a char array?
Is there a function in c that will return the index of a char in a char array?
For example something like:
char values[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char find = 'E';
int index = ...

