Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
typedef int F1(int x);

int F1(int x);

Seems the same to me,either with typedef or not..

share|improve this question
In this case it is the same because even if you dont mention the return type,the default return type is int.But this this will be different when using a different data type .geekinterview.com/question_details/31059 – Fahad Uddin Nov 26 '10 at 10:08

2 Answers

up vote 6 down vote accepted

typedef doesn't declare a variable; it declares a type.

After you say:

typedef int F1(int x);

later in your code you can have this:

F1 myfunction;

which is equivalent to:

int myfunction(int x);
share|improve this answer
So I can't use F1 myfunction if not using typedef? – wp2 Nov 26 '10 at 7:12
@wp2 -- exactly. Refer to msdn.microsoft.com/en-us/library/05w82thz(VS.71).aspx – BeemerGuy.net Nov 26 '10 at 7:15
typedef int F1(int x);

You define a function type F1 which is function taking a integer as argument and returning an integer

int F1(int x);

You define a function which is called F1

share|improve this answer
2  
The difference is clearer when writing: "typedef int (*F1)(int x);" – eyalm Nov 26 '10 at 7:09
1  
@eylam - The two are not equivalent. Yours declares a function pointer type. The original declares a function type. – Chris Lutz Nov 26 '10 at 7:11
1  
typedef int F1(int x) is definitely not a function pointer. – Manoj R Nov 26 '10 at 7:20
@Manoj: I know but they are generally used for function pointer. That's why i did put the parenthesis. – Phong Nov 26 '10 at 7:21
@onemasse - typedef int functype(int); and typedef int (*funcptr)(int); are different. functype f; declares a function f while funcptr fp = f; declares a function pointer fp that points to f. Expand them inline and see the difference. – Chris Lutz Nov 26 '10 at 7:23
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.