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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:18:45+00:00 2026-05-24T08:18:45+00:00

Suppose a variable pa is always declared as one of two ways: double *

  • 0

Suppose a variable pa is always declared as one of two ways:

double * pa

OR

double pa

Can we create an IF statement that does the following

IF (pa is a pointer)
{ pa[0] = 1
}

ELSE
{ pa = 1}

EDIT:

Please see How to find out if a pointer array has been filled in C++/C for the follow up question

  • 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-05-24T08:18:45+00:00Added an answer on May 24, 2026 at 8:18 am

    Not directly, no. Suppose there were a way to do this, something like

    if (__IS_POINTER(pa) {
        pa[0] = 1;
    }
    else {
        a = 1;
    }
    

    What happens if pa isn’t a pointer? You still have that pa[0] = 1; statement in your program, and it’s illegal, so the compiler is going to reject your program.

    You might in principle be able to do a compile-time test:

    #if __pa_IS_A_POINTER
    pa[0] = 1;
    #else
    a = 1
    #endif
    

    but the power of the C++ preprocessor is very limited; it has no way to test the type of a variable or expression.

    If you had this capability, what would you do with it? Tell us what your actual goal is.

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

Sidebar

Related Questions

Suppose I have two classes that both contain a static variable, XmlTag. The second
Suppose I have a variable of type Int = 08, how can I convert
Suppose I have a static variable declared inside a function in C. If I
Suppose you create a generic Object variable and assign it to a specific instance.
Suppose that I have an integer variable in a class, and this variable may
Suppose that i have UIView viewLoading declared in .h. and i do not directly
Suppose the following code declarations: itcl::class ObjectA { private variable m_ownedObject private variable m_someVariable
This is something that I've always wrestled with in my code. Suppose we have
Suppose i have a LPSTR variable. How do i free the memory after using
Suppose I have a class module clsMyClass with an object as a member variable.

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.