In the code below, function-pointer and what i considered as "function-reference" seems to have identical semantics:
#include <iostream>
using std::cout;
void func(int a) {
    cout << "Hello" << a << '\n';
}
void func2(int a) {
    cout << "Hi" << a << '\n';
}
int main() {
    void (& f_ref)(int) = func;
    void (* f_ptr)(int) = func;
    // what i expected to be, and is, correct:
    f_ref(1);
    (*f_ptr)(2);
    // what i expected to be, and is not, wrong:
    (*f_ref)(4); // i even added more stars here like (****f_ref)(4)
    f_ptr(3);    // everything just works!
    // all 4 statements above works just fine
    // the only difference i found, as one would expect:
//  f_ref = func2; // ERROR: read-only reference
    f_ptr = func2; // works fine!
    f_ptr(5);
    return 0;
}
I used gcc version 4.7.2 in Fedora/Linux
UPDATE
My questions are:
- Why function pointer does not require dereferencing?
- Why dereferencing a function reference doesn't result in an error?
- Is(Are) there any situation(s) where I must use one over the other?
- Why f_ptr = &func;works? Since func should be decayed into a pointer?
 Whilef_ptr = &&func;doesn't work (implicit conversion fromvoid *)
 
     
     
     
     
    