Tagged Questions
2
votes
1answer
108 views
y combinator and the C preprocessor
As far as I know y combinator is useful if you want to write a recursive function without using recursion explicitly. The C preprocessor does not support recursion. Can we implement the y combinator ...
1
vote
4answers
71 views
How can I write a single instruction to switch two values into a variable every time the instruction is being executed?
I'd like to write a single instruction to switch two values into a variable at every instruction execution; this is the generic case: having two values x1, x2 and i initialized to x1 or x2, switch i ...
2
votes
0answers
219 views
What is the best way to learn and master Python, from a procedural programmer perspective? [closed]
I am Mathematician and I currently work mainly on Operations Research field, building algorithms for solving Mathematical Programming or Optimization problems.
I learnt Fortran, Pascal and C (oh, and ...
11
votes
3answers
261 views
Functional Programming (Currying) in C / Issue with Types
As a dyed-in-the-wool functional programmer I find it hard not to try to shoehorn my favourite paradigm into whatever language I'm using. While writing some C I found I'd like to curry one of my ...
1
vote
1answer
89 views
Confused over “getting and clearing” when working in Microsoft C [closed]
I am confused over "getting and clearing" when working in Microsoft C. Like when or how you get the current status of word settings, and what function to use?
4
votes
1answer
427 views
Implementing a functional/persistent dictionary data structure
I'm trying to implement a functional dictionary in C. It is fairly easy to implement functional lists or b-trees but I can hardly find any references on dictionaries/associative arrays.
I had a look ...
7
votes
4answers
186 views
Does C support function expressions?
Is it possible to use function expressions in C? For example, I have the following code snippet (inside the main function):
void print_line(char *data) {
printf("%s\n", data);
}
// print all ...
3
votes
5answers
224 views
How is this familiar function implemented in C?
Consider the following code segment written in S-expr notation:
(lambda (x) (lambda (y) (+ x y)))
or in Javascript:
function(x) { return function(y) { return x+y; }; }
How do I write this in C?
11
votes
2answers
331 views
Compiling functional languages to C
Suppose you're compiling a functional language to portable C, and suppose also that for various reasons you want precise rather than conservative garbage collection. There is no portable way (perhaps ...
7
votes
4answers
395 views
Type inference in a C-like language?
Let's say, we create a reimplementation of C, with the only difference being
that types are inferred. Storage classes and modifiers would still need to be
given (const, static, restrict etc), and ...
14
votes
4answers
615 views
In C, what is the difference between `&function` and `function` when passed as arguments?
For example:
#include <stdio.h>
typedef void (* proto_1)();
typedef void proto_2();
void my_function(int j){
printf("hello from function. I got %d.\n",j);
}
void call_arg_1(proto_1 arg){
...
-5
votes
1answer
708 views
c program recursive function odd [closed]
I need a recursive function in C, that checks/compare the sum of values(integers) in odd positions, with the sum of values in even positions of an array. Also print(inside the function) the bigger ...
15
votes
8answers
762 views
What could be the fastest and least painful way to learn LISP for a C developer?
I have been working as a C developer on Linux platform for sometime now. Recently finished K & R and did a little study of implementing OOP in C. Beside that I have studied C++ and Java. All of it ...
10
votes
7answers
1k views
Higher order functions in C
Is there a "proper" way to implement higher order functions in C.
I'm mostly curious about things like portability and syntax correctness here and if there are more than one ways what the merits and ...
3
votes
4answers
3k views
Bubble sort algorithm implementations (Haskell vs. C)
I have written 2 implementation of bubble sort algorithm in C and Haskell.
Haskell implementation:
module Main where
main = do
contents <- readFile "./data"
print "Data loaded. Sorting.."
...
20
votes
3answers
2k views
Is there a way to do currying in C?
Say I have a pointer to a function _stack_push(stack* stk, void* el). I want to be able to call curry(_stack_push, my_stack) and get back a function that just takes void* el. I couldn't think of a way ...
24
votes
3answers
3k views
Functional programming in C with macro “Higher Order Function” generators
Pay attention carefully because this is a hell of a question ;-)
I want to use template functions for generic collection actions (like search, foreach, etc.) in C while maintaining compiler static ...
64
votes
13answers
9k views
What tools are there for functional programming in C?
I've been thinking a lot lately about how to go about doing functional programming in C (not C++). Obviously, C is a procedural language and doesn't really support functional programming natively.
...

