Contact: aviboots(AT)netvision.net.il
40,869 questions
53,277 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { int total = sizeof(double); Console.WriteLine("{0} bytes ({1} bit) per double", total, total * 8); } } } /* run: 8 bytes (64 bit) per double */