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

write a program for size of a data type without using
sizeof() operator?

Answer Posted / tishu

#include<stdio.h>
void main()
{
long int i,j,k;
printf("Enter a number");
scanf("%d",&i);
if(-32768<i && i<32767)
j=i*i;
k=j/(j/2);
printf("%d",k);
}

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 difference between constant pointer and constant variable?

1326


Explain how do I determine whether a character is numeric, alphabetic, and so on?

1141


Explain why can’t constant values be used to define an array’s initial size?

1363


What is the general form of #line preprocessor?

1005


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

2100


What are volatile variables in c?

958


What is c variable?

1050


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

1399


What is the best way to comment out a section of code that contains comments?

1346


What are the string functions? List some string functions available in c.

998


Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

3071


Can we increase size of array in c?

975


How are variables declared in c?

1110


What are the different properties of variable number of arguments?

1168


What is the process of writing the null pointer?

1031