just out of curiosity I want to know what is the programming language for writing windows?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

We use almost entirely C, C++, and C# for Windows. Some areas of code are hand tuned/hand written assembly.

http://social.microsoft.com/Forums/en-US/windowshpcacademic/thread/65a1fe05-9c1d-48bf-bd40-148e6b3da9f1

link|improve this answer
feedback

Answered on SO

Well, the Windows kernel is still almost entirely C. However, there are different aspects that use C++, say some parts of the shell and so forth. The core is C. Other languages, perhaps even .NET might be used in some corners for certain applications but C is the OS language of choice in Windows.

link|improve this answer
1  
thanks for the answer!!! – Ehsan Mamakani Apr 29 '10 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.