LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-31-2004, 11:58 AM   #1
Disruptor
LQ Newbie
 
Registered: Jul 2003
Location: Hellas - Crete - Heraklion
Distribution: Red Hat 9
Posts: 24

Rep: Reputation: 15
gcc: recursive function quirk


Hi all you folks!! I'ld like to share with you the exotic piece of code following below, that I (accidentally) wrote and tripped uppon:

size_t
Vector_private__sizeofArrayCell (void)
{
Vector_private__sizeofArrayCell ();
}

Gcc doesn't complain. I think it poses an interesting (`academic') topic. Does anyone know whether gcc (3.2.2 here) rightfully:

1. Doesn't complain about the obvious infinite recursion??
and 2. Doesn't compain about the function not having a return statement to return something of `size_t'??

Any ideas/ thoughts??

Cheers,
Disruptor
 
Old 09-22-2014, 12:26 PM   #2
DarrenDrapkin
Member
 
Registered: Aug 2014
Location: Leeds, England
Distribution: Slackware x86 64 version 15.0
Posts: 127
Blog Entries: 3

Rep: Reputation: 27
Post GCC is not perfect

Simple - its a bug - isnt it? A bug in gcc. Try it in clang or a proprietry C compiler
 
1 members found this post helpful.
Old 09-22-2014, 12:57 PM   #3
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
Now I don't code C every day anymore, but what is wrong with this code?

I am sure gcc doesn't complain about infinite recursion. If that is what you want, fine. Infinite recursion is an execution time property, not a compiler problem.

A return statement is not needed because it is a void function.

jlinkels
 
Old 09-22-2014, 01:01 PM   #4
smallpond
Senior Member
 
Registered: Feb 2011
Location: Massachusetts, USA
Distribution: Fedora
Posts: 4,143

Rep: Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264
To be correct it should be:
Code:
size_t
Vector_private__sizeofArrayCell (void)
{
    return Vector_private__sizeofArrayCell ();
}
Now it will return the correct value once forever elapses.
 
Old 09-23-2014, 05:45 AM   #5
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,299
Blog Entries: 61

Rep: Reputation: Disabled
Original post is 10 years old.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Perl file handler in recursive function enemorales Programming 4 02-02-2009 03:20 PM
using return in recursive function hubabuba Programming 9 10-10-2005 09:59 AM
error recursive function in c shams Programming 3 07-28-2004 08:44 PM
Recursive Function TriggerJ Programming 4 02-02-2004 08:58 PM
Can't get a simple C function to work with GCC chris.hicks Programming 3 10-29-2003 11:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:37 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration