Explain what is a 'locale'?



Explain what is a 'locale'?..

Answer / Sachin Kuar

A 'locale' in C programming is a set of conventions for formatting and interpreting dates, times, numbers, and other language-dependent information. It defines rules such as how to represent a date (dd/mm/yyyy or mm/dd/yyyy), currency symbol usage, and number formats (decimal point or comma).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is New modifiers?

1 Answers   NA,


What is the significance of c program algorithms?

1 Answers  


Write programs for String Reversal & Palindrome check

1 Answers   TISL,


Is malloc memset faster than calloc?

1 Answers  


What is the right type to use for boolean values in c? Is there a standard type?

1 Answers  


How can I trap or ignore keyboard interrupts like control-c?

1 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


Why can’t constant values be used to define an array’s initial size?

1 Answers  


what is an array

5 Answers  


how can i sort numbers from ascending order and descending order using turbo c..

1 Answers  


main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

4 Answers   Vector, Wipro, Zoho,


My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.

1 Answers  


Categories