Structure in c (हिंदी)
Table of ContentsStructureDeclaring a StructureDeclaring a Structure VariableAccessing Structure Members Structure Structure एक derived data type हैं c programming में, जो कि एक ही बार में एक या एक से…
Table of ContentsStructureDeclaring a StructureDeclaring a Structure VariableAccessing Structure Members Structure Structure एक derived data type हैं c programming में, जो कि एक ही बार में एक या एक से…
Table of ContentsTypes of Comment1. Single Line Comment1. Multi-Line Comment Comment का उपयोग को program को explain करने की लिए किया जाता है, ताकि जो प्रोग्राम को read करते ही…
#include <stdio.h> void main() { printf("Hello, World!"); } line 1 में जो #include लिखा गया है ये preprocessor directive कहलाता है। stdio.h एक header file जिसे प्रत्येक c program में…
Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के execution के दौरान change भी कर सकते…
Table of ContentsTypes of Decision-making statements1. if statement2. if else statement3. Nested if-else statement4. else if ladder statement5. Switch-case statement Decision making statements को हम conditional statements (condition , परिस्तिथि…
C एक कंप्यूटर Programming भाषा जो की कंप्यूटर Software बनाने के काम आती है। C Programming को डेनिस रिची के द्वारा अविष्कार किया गया था (1969 - 73) | ये…