Variable & Constant in C#
Table of ContentsVariableRules of declaring a variableConstant Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के…
Table of ContentsVariableRules of declaring a variableConstant Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के…
Table of ContentsFile HandlingFile को read करनाRead FileWrite to FileAppend in FileClose FileConclusion File Handling File से data read करना, write करना, अपडेट करना, file को create और delete करना…
Operators mathematical symbols (चिह्न) है जो की गणितीय (mathematical) और तार्किक (logical) calculation करने के उपयोग किये जाते, उदाहरण के लिए +, -, *, / आदि operators है। Example #include<stdio.h>…
पाइथन एक General Purpose Object-Oriented Programming language है | जिसका उपयोग हम Software बनाने के लिए करते हैं, सॉफ्टवेयर जैसे Desktop, Web, Console एप्लीकेशन सॉफ्टवेयर आदि। System Scripting, Tasks Automation…
Data structures are a way of organizing and storing data in a computer so that it can be accessed and modified efficiently. Different types of data structures are suited to…
Everything is based on objects and classes. Object-oriented programming (OOP) is a programming paradigm that is based on the concept of “objects”, which are data structures that contain both data…
Table of ContentsKeywordsC Keywords ListIdentifiersRules of declaring an Identifier Keywords Keywords वो word (शब्द) है जिनकी meaning पहले से define है। जिनको हम अपने program में variable/identifier के रूप में…
Table of ContentsLoopTypes of loop (Loop के प्रकार)1. Entry Control Loop2. Exit Control LoopFor LoopWhile LoopDo-While Loop Loop Loop (repetition) में एक या एक से अधिक statements होती है, जो…