long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / darshan l.
Of course it is compiler dependent.
But the minimum size of long int must be 4 bytes(32 bits); it may be more than that also.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the -> in c?
Is it better to use a macro or a function?
What is the purpose of the statement: strcat (S2, S1)?
i have a written test for microland please give me test pattern
program for reversing a selected line word by word when multiple lines are given without using strrev
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
How can I find the modification date and time of a file?
How can I determine whether a machines byte order is big-endian or little-endian?
What are the advantage of c language?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What are the different types of pointers used in c language?
What is wrong with this code?
Can the curly brackets { } be used to enclose a single line of code?
Explain what are linked list?