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...

which of the following statements is incorrect
a.typedef struct new{
int n1;
char n2;
} DATA;
b.typedef struct {
int n3;
char *n4;
}ICE;
c.typedef union {
int n5;
float n6;
} UDT;
d.#typedef union {
int n7;
float n8;
} TUDAT;

Answer Posted / saudip sen

choice d.

Reason:
The macro sign # is not applicable here.
Syntactical error!

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What kind of structure is a house?

1048


What does 2n 4c mean?

1241


write an algorithm to display a square matrix.

2716


What the advantages of using Unions?

1234


How can I ensure that integer arithmetic doesnt overflow?

1177


What is a keyword?

1173


where are auto variables stored? What are the characteristics of an auto variable?

1077


What does a function declared as pascal do differently?

1142


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

1007


What are the types of arrays in c?

1182


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

3188


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

1208


What is spaghetti programming?

1145


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1160


What is the explanation for the dangling pointer in c?

1118