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 find the size of the data type like int,float
without using the sizeof operator?

Answer Posted / amit ranjan

int main()
{
int a[2];
int one = a;
int two = a+1;
int test = two-one;
printf("%d\n", test);
return 0;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is getch c?

1294


write a program for the normal snake games find in most of the mobiles.

2253


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1265


Can we use visual studio for c?

1076


Is it possible to have a function as a parameter in another function?

1072


Explain null pointer.

1107


Is c easier than java?

1067


find out largest elemant of diagonalmatrix

2244


Explain what are header files and explain what are its uses in c programming?

1151


What is wrong with this statement? Myname = 'robin';

1323


Where we use clrscr in c?

1129


How do you define CONSTANT in C?

1267


Do you know what are bitwise shift operators in c programming?

1096


what value is returned to operating system after program execution?

2111


What is static function in c?

1111