Qual é a diferença entre fundição tipo C e fundição funcional? [duplicado]

Possíveis duplicatas:
Estilos de sintaxe de conversão em C ++
C ++: Qual é a diferença entre function (myVar) e (function) myVar?
Qual é a diferença entre o valor (tipo) e o tipo (valor)?

b = (int) a;    // c-like cast notation
b = int (a);    // functional notation

questionAnswers(4)

yourAnswerToTheQuestion