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 9182699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:37:19+00:00 2026-06-17T18:37:19+00:00

I know this is a very basic problem, but I cannot move forward without

  • 0

I know this is a very basic problem, but I cannot move forward without it and its not clearly explained elsewhere.

Why is this programming giving me so many errors of undeclared identifier? I have declared it, though.

These are the error i am getting.

Error   2   error C2143: syntax error : missing ';' before 'type'
Error   3   error C2065: 'ptr' : undeclared identifier
Error   4   error C2065: 'contactInfo' : undeclared identifier
Error   5   error C2059: syntax error : ')'
Error   15  error C2223: left of '->number' must point to struct/union

and more…

#include<stdio.h>
#include<stdlib.h>

typedef struct contactInfo
{
    int number;
    char id;
}ContactInfo;


void main()
{

    char ch;
    printf("Do you want to dynamically etc");
    scanf("%c",&ch);
    fflush(stdin);


        struct contactInfo nom,*ptr;
        ptr=(contactInfo*)malloc(2*sizeof(contactInfo));

    nom.id='c';
    nom.number=12;
    ptr->id=nom.id;
    ptr->number=nom.number;
    printf("Number -> %d\n ID -> %c\n",ptr->number,ptr->id);

}
  • 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-17T18:37:20+00:00Added an answer on June 17, 2026 at 6:37 pm
    typedef struct contactInfo
    {
        int number;
        char id;
    }ContactInfo;
    

    This code defines 2 things:

    1. a type named ContactInfo
    2. a struct named contactInfo

    Notice the difference of the c and C!

    In your code you are using a mixed combination of both, which is allowed (although confusing IMHO).

    If you use the struct variant you need to explicitly use struct contactInfo. For the other variant (ContactInfo) you must to omit the struct part as it is part of the type definition alteady.

    So be careful with both different definitions of your structure. Best would be to only use either one of the variants.


    I do not have Visual Studio at hand, but the following (corrected) code compiles with gcc properly without any warnings:

    #include<stdlib.h>
    
    typedef struct contactInfo
    {
        int number;
        char id;
    }ContactInfo;
    
    
    void main()
    {
        ContactInfo nom,*ptr;
        ptr=malloc(2*sizeof(ContactInfo));    
    }
    

    (I left out the not so interesting/unmodified parts of the code)

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

Sidebar

Related Questions

I know, this might be a very basic question but I am not 100%
This could be a very basic problem, but I sort of don't know SQL
guys I know this question is very basic but I've met in few publications
Ok, I know this is a very basic question, but my head is swimming
This could be a very basic Javascript I know but I just can't get
I know this is a very simple and basic question but I would like
I know this is an extremely basic question but I'm very new to (non-HTML)
I know this is very basic. I would like to use jQuery to change
This is a very very basic question and I know one way is to
I know this is very evil, but is it possible to add an object

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.