answersLogoWhite

0

the size of an integer is determaind by using the function "sizeof(c)",here 'c' is any integer.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What is the size of an integer?

An integer is any number, and since there are an infinite amount of numbers, the size of an integer is unlimited.


What is the method to find size of an array in java?

Arrays have a method called length() that can help us find out the size of the array.int[] l = new int[5];System.out.println(l.length);The above 2 lines of code will create an integer array of size 5 and will print the size 5 on the console.


What size print will an image that is 7.8 MP?

What size print will an image that is 7.8 MP?


Write a line of code that asks the python user to input an integer greater than 0 and store this value in a variable and display its value?

integer = input("Please input an integer greater than 0: ") print(integer)


Write program that read an integer and display all its smallest factors?

All the smallest factors of a number must be its smallest factor, which for any number is 1, so: loop loop loop print "Enter an integer number: ": input n until num(n) do print "Please enter a number" repeat until n = int(n) do print "Please enter an integer" repeat print "Smallest factor of ":n:" is 1" repeat


What is the machanism of printing?

choosing the right size to print my documnet to print in same size letters


What size is a standard photo print?

A standard photo print is typically 4x6 inches in size.


Write a program to revrse the given integer and print it backwords?

In Java, you might use the StringBuffer class. Convert the integer to a StringBuffer, use the method to revert it - I believe it is revert() or something; look it up in the documentation - then print it.In Java, you might use the StringBuffer class. Convert the integer to a StringBuffer, use the method to revert it - I believe it is revert() or something; look it up in the documentation - then print it.In Java, you might use the StringBuffer class. Convert the integer to a StringBuffer, use the method to revert it - I believe it is revert() or something; look it up in the documentation - then print it.In Java, you might use the StringBuffer class. Convert the integer to a StringBuffer, use the method to revert it - I believe it is revert() or something; look it up in the documentation - then print it.


Why is the print so small on your Gmail?

The font size for the browser would be lowered. That is why the print is very small in it. You can increase the print by increasing the browser font size.


What is the value of a print of us frigate constitution?

It depends on the size of the print.


What size are red eyed tree frogs when they are born?

about the size of an average person's pointer finger print or thumb print


How do you write a program in VB to compare three number and print larger number?

' Return the maximum of a,b,c Function max(ByVal a As Integer, ByVal b As Integer, ByVal c As Integer) As Integer Dim maxAB As Integer maxAB = Math.Max(a, b) Return Math.Max(maxAB, c) End Function