473,657 Members | 2,415 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pointers to Enum in C

63 New Member
Expand|Select|Wrap|Line Numbers
  1. #include <string.h>
  2. enum State {yes=1, no=0}SS, *ptr;
  3. struct Example {
  4. enum State *ptr;
  5. }EX;
  6.  
  7. enum State SS=yes;
  8. main()
  9. {
  10. struct Example* PTR;
  11. //enum State *ptr;
  12. PTR=&EX;
  13. ptr=&SS;
  14. printf("%d",PTR->ptr);
  15. }
  16.  
no errors ....but unable to print the enum values for "yes" and "no"
Is the logic incorect
Sep 20 '07 #1
4 14329
arnaudk
424 Contributor
You've written 'enum' a few too many times; you only need it once to declare a new variable type:
Expand|Select|Wrap|Line Numbers
  1. #include <string.h>
  2. enum State {yes=1, no=0} SS, *ptr;
  3. // Now State type is declared
  4. struct Example {
  5.  State *ptr;
  6.  // ptr is a pointer to a State
  7.  } EX;
  8. State SS=yes;
  9. // SS is a variable of type State
  10.  
[EDIT: Actually, this applies only to C++, not C as you have indicated. Ignore this post]
Sep 20 '07 #2
arnaudk
424 Contributor
Isn't it just that you should write PTR->ptr=&SS; on line 13?
Sep 20 '07 #3
askcq
63 New Member
no its not working
pls help
Sep 21 '07 #4
weaknessforcats
9,208 Recognized Expert Moderator Expert
Avoid defining multiple things on one line. Separate the emum from the variables:
Expand|Select|Wrap|Line Numbers
  1. enum State {yes=1, no=0};
  2. State SS = yes;
  3. State*ptr;
  4.  
Next, when you create yout struct variable, you never initialize the pointer in the variable:
That is, EX.ptr is never pointed at a State variable.

Try this out and let me know what happens.
Sep 21 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

15
14029
by: Web Developer | last post by:
Hi, Can someone provide a short and concise statement(s) on the difference between pointers and references. A graphical representation (via links?) of both would be much appreciated as well. WD
5
2072
by: zRaze | last post by:
Scenario: I have a base class called "BaseCls", and two derived classes called "DerCls1" and "DerCls2" I declare a variable - BaseCls *MyClassObj; I have some code - If( Condition )
6
4027
by: Cheng Mo | last post by:
I tried in g++ sizeof(int*) siezof(long*) sizeof(Foo*)//Foo is a self-defined class They all has same size. Do all pointers have same size in a given platform with given compiler? Thanks & Regards
1
380
by: Link | last post by:
//Compiled with Microsoft Visual C++ 6.0 typedef enum {one=1,two} timesPushed; #include <string> #include "CTStack.h" //my simple stack
3
2211
by: Hexar Anderson | last post by:
I have two questions: a) From documentation located at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmxspec/html/vcManagedExtensionsSpec_7_7.asp, it says, "Pinning a sub-object defined in a managed object has the effect of pinning the entire object. For example, if any element of an array is pinned, then the whole array is also pinned. There are no extensions to the language for declaring a pinned array. To pin an...
38
2584
by: James Brown | last post by:
All, I have a quick question regarding the size of pointer-types: I believe that the sizeof(char *) may not necessarily be the same as sizeof(int *) ? But how about multiple levels of pointers to the same type? Would sizeof(char **) be the same as sizeof(char *)? And if it is, would the internal representation be the same in both cases? background on this: I'm writing a simple IDL compiler that produces 'C'
54
11965
by: Boris | last post by:
I had a 3 hours meeting today with some fellow programmers that are partly not convinced about using smart pointers in C++. Their main concern is a possible performance impact. I've been explaining the advantages of smart pointers endlessly (which are currently used in all our C++ software; we use the Boost smart pointers) as I'm seriously concerned that there is a shift to raw pointers. We are not developing system software but rather...
2
10972
by: Mahesh Rasal | last post by:
Hello all, I want to initialize the pointers to functions, which i have declared in an array. e.g #include <math.h> typedef double (*Fx)(double x); // pointer to function int main(void) {
24
2176
by: arnuld | last post by:
PURPOSE: see the comments. WHAT I GOT: infinite loop /* This program will simply create an array of pointers to integers * and will fill it with some values while using malloc to create * pointers to fill the array and then will print the values pointed * by those pointers *
0
8413
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8513
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8617
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7352
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2742
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.