Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8423561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T03:45:22+00:00 2026-06-10T03:45:22+00:00

i am new to Objective-C, not entirely sure where I am going wrong here.

  • 0

i am new to Objective-C, not entirely sure where I am going wrong here.
I am trying to get the program to print the area and perimeter of a square.
The program is telling me that I am sending an undeclared identifier to the perimeter and area methods

#import <Foundation/Foundation.h>

@interface Rectangle : NSObject
{
int width;
int height;
}

-(void) setWidth: (int) w;
-(void) setHeight: (int) h;
-(int) width;
-(int) height;
-(int) area;
-(int) perimeter;

@end

@implementation Rectangle


-(void) setWidth:(int)w   
{
width = w;
}

-(void) setHeight: (int)h
{
height = h;
}

-(int) width
{
return width;
}

-(int) height
{
return height;
}

-(int) area
{
return width*height;
}

-(int) perimeter
{
return (2*width + 2*height);
}


@end
int main(int argc, const char * argv[])
{

@autoreleasepool {

    Rectangle *rect1 = [[Rectangle alloc] init];

    [rect1 setWidth:2];
    [rect1 setHeight:7];

    NSLog(@"The perimeter of rect1 is: %i and the area is: %i", area, area);


}
return 0;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T03:45:24+00:00Added an answer on June 10, 2026 at 3:45 am

    There’s no variable named area, it is a method. Try [rect1 area]; and [rect1 perimeter];, you already created the object and used two methods correctly, you slipped on the area 🙁 Good luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm pretty new to Objective-C, so I am not entirely sure of the terms
I'm new in objective-c, and I'm now trying to write a simple user-sign-in program
I'm fairly new to Objective-C and am not sure how to correctly deal with
I'm somewhat new to objective-c and I'm not sure what the correct memory management
I am new to Objective-C and iOS development and I'm not sure if I'm
I'm new to Objective-C and I'm not sure if I'm using NSAutoreleasePool the right
I'm new to the 4.0 framework (coming from 2.0), and I'm not entirely sure
So I am new to Objective-C but not to OOP programming. I am trying
I am Completely new to Objective C and Cocoa programming. Why does NSApplicationMain not
I want to start a new thread using a C function, not an objective-C

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.