Contact: aviboots(AT)netvision.net.il
41,780 questions
54,465 answers
573 users
#include <stdio.h> #include <locale.h> int main() { long double ld = 28153056843; setlocale(LC_NUMERIC, ""); printf("%'Lf", ld); return 0; } /* run: 28,153,056,843.000000 */