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

Identify the operators that is not used with pointer

a. &&

b. #

c. *

d. >>

Answer Posted / senthil

ANS. b. #

# is an operator used to convert a parameter to string
# should always be followed by a formal parameter (in below example parameter x)

Ex:
#define SAM(x) #x
printf(SAM(Hello)); // prints Hello

In other cases
char a = 0x10, b;
char *p = &b;

a. a&&*p is valid
b. *p is valid
c. a>>*p is valid

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you generate random numbers in C?

1246


Is there a built-in function in C that can be used for sorting data?

1338


Write the control statements in C language

1279


How we can insert comments in a c program?

1187


Why is c known as a mother language?

1290


How can you check to see whether a symbol is defined?

1140


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

1421


Why c is called free form language?

1074


Which is better between malloc and calloc?

1252


Why is c called c?

1074


How do we open a binary file in Read/Write mode in C?

1278


What is memory leak in c?

1174


write a program to create a sparse matrix using dynamic memory allocation.

4955


What is structure data type in c?

1067


is it possible to create your own header files?

1163