long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes

Answer Posted / karthik

THE MAIN USE OF SHORT AND LONG IS TO USE IN COMPILER
INDEPENDENT ENVIRONMENT..

Is This Answer Correct ?    0 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe dynamic data structure in c programming language?

614


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

737


Explain bit masking in c?

650


Explain argument and its types.

621


code for replace tabs with equivalent number of blanks

1655






a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4556


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

2238


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1528


What is double pointer?

571


What are the header files used in c language?

601


Mention four important string handling functions in c languages .

642


How can you increase the allowable number of simultaneously open files?

609


Without Computer networks, Computers will be half the use. Comment.

1887


The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?

781


What is the difference between far and near in c?

612