Posts

Showing posts from September, 2022

C# .NET B. Com(IT)3/M.Com -1

Image
Click Here  

B. Com (IT) I- C Notes for understanding

C Programming Marathi Notes For understanding purpose only Introduction C History Of C :       महान संगणक शास्त्रज्ञ डेनिस रिची यांनी 1972 मध्ये बेल लॅबोरेटरीजमध्ये ‘सी’ नावाची नवीन प्रोग्रामिंग भाषा तयार केली. ‘ALGOL’, ‘BCPL’ आणि ‘B’ प्रोग्रामिंग भाषांमधून ही तयार केले गेली आहे. ‘सी’ प्रोग्रामिंग लँग्वेजमध्ये या भाषांची सर्व वैशिष्ट्ये आणि इतर अनेक अतिरिक्त संकल्पनांचा समावेश आहे. ‘C’ ही एक शक्तिशाली प्रोग्रामिंग भाषा आहे.ही UNIX ऑपरेटिंग सिस्टमशी संबंधित भाषा आहे. युनिक्स ऑपरेटिंग सिस्टीमचाही बहुतांश भाग ‘C’ मध्ये कोड केलेला आहे. सुरुवातीला ‘C’ प्रोग्रामिंग हे UNIX ऑपरेटिंग सिस्टीमपुरते मर्यादित होते.पण जसजसे ते जगभर पसरू लागले, तसतसे ते व्यावसायिक बनले आणि क्रॉस-प्लॅटफॉर्म सिस्टमसाठी अनेक कंपायलर तयार करण्यात आले.     Document Section मध्ये Progam शी संबंधित Documentation तसेच Program चे author या विभागात लिहिता येतात .             Link Seciton मध्ये Program साठी आवश्यक header files specify केल्या जातात,ज्यामध्ये define केलेली fu...

B. Com (IT) I - 871 C programs for Practice (Small But very Important)

  Total 871  C programs for Practice (Small But very Important) Steps to perform     1) Read the Program Carefully     2) Write it in Your Lab Course Notebook     3) Run the same in your PC/Mobile     4) Write the Output and Description  of Program under it      5) Update the Index  

C AND C# PPT

Image
C PPT C# PPT

B.COM (IT) -III (ADT) Question Answer

B.COM(IT) -III (ADT) Question Answer 

B.Com(IT) - III C#.NET -(Hello World)

Image
  C# Hello World: First Console Application Program C# is one of the languages provided by Microsoft to work with .Net. This language encompasses a rich set of features, which allows developing different types of applications. C# is an object-oriented programming language and resembles several aspects of the C++ Language. In this we see how to develop our first application. This will be a basic console application, we will then explore different data types available in the C# language as well as the control flow statements. Building the first console application A console application is an application that can be run in the command prompt in Windows. For any beginner on .Net, building a console application is ideally the first step to begin with. In our example, we are going to use Visual Studio to create a console type project. Next, we are going to use the console application to display a message “Hello World”. We will then see how to build and run the console application. Let’s ...