0
votes
6answers
144 views

What is the best way to find a function by name in a huge project?

Let's say we have a project (e.g. a library) consisting of 100 files, each contains about 1000 lines of code. You want to find the function awesome_foo(...) How do you do it? Honestly, I find grepping ...
0
votes
4answers
166 views

how to find the most frequent number in 1T numbers?

How to find the most frequent number(int type) in 1T (i.e. 10^12) numbers? My premises are: My memory is limited to 4G (i.e. 4ยท10^9) bytes. All the numbers are stored in a file as the input. The ...
1
vote
1answer
67 views

Using findfile in my program

I am trying to incorporated the findfile function into my code and I am getting the error "Segmentation error (core dumped). I understand what this means, I just can not find the error in the code. ...
2
votes
1answer
71 views

Search a .csv file for name match in C

I currently have a .csv file containing three fields: user, password, type. For instance, my file looks like this: michael, sun123, user joseph, sierra7, user isaac, apple2, sysop I would like ...
2
votes
2answers
113 views

How to find your directory manually in Linux?

I am about to write a command that shows the current directory in linux. I know I can use the "pwd" command, but that's what I need to implement myself!... in other words, when entering the so called ...
-2
votes
1answer
64 views

percentage of certain msgs in an hash table [closed]

I'm looking for an algorithm that will help me accomplish this: I need to write a program in C that will get unknown number of msgs from senders to receivers. Like 23 to 12, 44 to 19 etc' and i need ...
3
votes
1answer
129 views

exec() error when using find -exec

I've to find with a script an executable named Test that take as argument a path, and execute it. I'm doing this with this line: find -name Test -exec {} path \; In Test I got an execl: ...
-1
votes
3answers
95 views

How can I search for a file within a directory and its sub-directories in c?

How can I search for a file within a directory and its sub-directories in C? I'm not allowed to use find and I must use opendir , readdir and stat. I want to perform something like the command ls ...
0
votes
2answers
68 views

How can i iterate in C a string by word

i need to make a program which takes as input on text file and output the same string with one replaced word; the main function will take 3 parameters (wordR,wordS,file). So anyone can help me with a ...
1
vote
2answers
103 views

Search for and connect to a local server (C-programming)

I'm doing some socket programming in C where I have one server and many clients on the local network. I want the client to find (search for) the server on the network by itself (i.e.not having to ...
1
vote
8answers
1k views

C string functions

In C, how do I extract the first n characters from a string until I find a space in the string? Essentially, which C function will find the position of the next space for me and which C function will ...
-1
votes
2answers
73 views

Running command when word appears in log? [closed]

I would like to know if there is any way to scan a text file and then run a command. I have tried grep getting nowhere. I have also tried the find . thing, it sounds promising but I can't seem to get ...
0
votes
2answers
2k views

scan a directory to find files in c

I'm trying to create a function in c which scans all my path C: \ temp (Windows) to search for a file that I pass (eg test.txt) and each time it finds one return the path to steps another function to ...
0
votes
5answers
1k views

Find and Replace in a C File

The Problem was to find and replace a string in a C File. I am new to C Files. I have tried the following code but I didnt get any output: #include<stdio.h> #include<string.h> ...
4
votes
12answers
296 views

What is wrong with this function?

I got a problem today. It had a method and I need to find the problem in that function. The objective of the function is to append new line to the string that is passed. Following is the code char* ...