Tagged Questions

4
votes
8answers
278 views

What is the difference between long long and long int

I know the difference between long and int But What is the difference between "long long" and "long int"
0
votes
1answer
87 views

Mechanism to call functions with different number and type of parameters?

I have a set of functions to be called e.g.: void void_func(); /* id = 0 */ void void_func1(int); /* id = 1 */ void void_func2(int, char *); /* id = 2 */ void ...
0
votes
4answers
2k views

Conversion: uid_t to string, off_t to string

I am currently writing a systems programming homework and in one part i need to get some information of a file in a directory. for the stat of file, we have ctime() function which converts time_t ...