Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to use enum datatype?Please explain me?

Answer Posted / gsrinivas

enum data type usally user defined.
for ex:
enum{sunday,monday,tuesday};
enum x;








Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is && in c programming?

1164


Why is it important to memset a variable, immediately after allocating memory to it ?

2070


explain what is an endless loop?

1082


What is the difference between malloc() and calloc() function in c language?

1075


what is reason of your company position's in india no. 1.

2325


What are the 5 types of inheritance in c ++?

1021


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6292


What math functions are available for integers? For floating point?

1128


#include { printf("Hello"); } how compile time affects when we add additional header file .

1892


How can I list all of the predefined identifiers?

982


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2776


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

1233


Is a pointer a kind of array?

1178


What are # preprocessor operator in c?

1105


What is the use of in c?

1026