answersLogoWhite

0

Dim i as double = CDbl("12")

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the lowest string on a double bass?

The lowest string on a four string double bass is an E string. If you have a fairly rare five string double bass then the lowest fifth string is a B string.


What is the correct name for a string puppet?

The correct name for a string puppet is a marionette.


How many strings does a double base have?

the double bass has 4 strings G string D string A string and E string.


Why does C forbid converting a string constant to 'char' ?

C forbids converting a string constant to 'char' because string constants are stored in read-only memory, and attempting to modify them through a 'char' pointer can lead to undefined behavior and potential program crashes.


Where can one find information on converting string to int java?

One can find information on converting string to int in Java by visiting the Stack Overflow website. This website is free to browse and has lots of information on this topic.


How do you spell string?

That is the correct spelling for "string" (cord, or violin strands).


Why does ISO C forbid converting a string constant to 'char' in C?

ISO C forbids converting a string constant to 'char' in C because string constants are read-only and attempting to modify them through a 'char' pointer can lead to undefined behavior and potential program crashes.


What is the correct direction for winding a guitar string?

The correct direction for winding a guitar string is clockwise around the tuning peg.


Is Double bass a string instrument?

The Double Bass is a string instrument. Other instruments in the orchestral family of string instruments are the violin, viola and cello.


How does perl interpretor know that string has ended?

A Perl string begins and ends with a delimiter. This can either be a single-quote ('), double-quote (") or user defined quote (q): $single = 'This string is single-quoted'; $double = "This string is double-quoted"; $user = q^This string is delimited by the caret symbol^


Is it possible to convert strings in java to double directly?

Not directly. A String is an object, and a double is a primitive data type. To do the conversion you must first convert the String to a Double object (note the capital D in double), then convert that object to a double data type (lowercase d in double). Double is an object, double is a primitive data type. Here's a class that will convert a String to a double:public class StringToDouble{public static void main (String[] arguments) {String s = "100.00";double d = Double.valueOf(s.trim()).doubleValue();System.out.println("double d = " + d);}}


C coding for operator overloading?

C does not support operator overloading. If you mean C++ operator overloading, it depends on exactly what you wanted to do. If you wanted to '+' to strings, then you could write: string operator+(string a, string b) { // do something }