Tagged Questions
0
votes
2answers
43 views
finding mode from histogram
i have this function to print the histogram, I suppose to use this function calculate mode as well, I understand that to find mode you need to compare number of occurrences of each score, but I can't ...
0
votes
1answer
221 views
Appending to existing file from resource file in Linux C Program
i've trying to perform appending to an existing file from resource file using the C programming in Linux. However, my code doesn't work for that, can any1 do tell me what's wrong with the code and ...
2
votes
2answers
115 views
How to generate .exe drivers instead than .sys?
I'm new in kernel mode world. I've tried to write a simple "hello world" driver in a Windows 7 virtual machine, I'm using WDK 7600.16385.1 -> x86 Free Build Environment for compilation, when it does, ...
0
votes
1answer
103 views
Compiling real mode asm (rootkit.arsenal)
Im stuck on compiling the tsr.asm code provided in the book rootkit arsenal.
I installed open watcom on a XP maschine and the first asm listing was compiled well.
When compiling, it throws the error: ...
1
vote
3answers
297 views
Client server program and mode_t
I need to send a variable of type mode_t through a socket. How do i do it? I mean I could convert it to a string using snprintf()..but is it ok?
Thanks
2
votes
1answer
157 views
C: strange behavior with nftw()
I've this code:
#include <ftw.h>
#include <stdio.h>
#include <string.h>
int nftw_stat(const char *path, const struct stat *stat, int flags,
struct FTW *ftw)
{
if ...
1
vote
2answers
237 views
Calculate all modes in c
Can you give me some hint on how to calculate if there are two or more modes in c?
I was able to create a program that will calculate for the mode, but if i have a dataset with multiple modes, like ...
