Special punctuation symbols in C language:

C programming language के अंदर इस्तेमाल होने वाले कुछ special symbol punctuation है जो निम्नलिखित है :

Square Brackets[]: Opening और closing brackets array बनाने केलिए किया जाता है इसे square brackets बोला जाता है 

Parentheses(): इसका इस्तेमाल special symbols का इस्तेमाल function के नाम के बाद किया जाता function calls, function define,करते वक्त या looping statement,conditional statement में भी किया जाता है  Parentheses इसे Parentheses Brackets बोला जाता है

Punctuation & Special Character in c,what are c language Special Character,what are c language Special Character in hindi

Curly Braces{}: इसका इस्तेमाल function,looping,conditional statement के block को Opening और closing के लिए इस्तेमाल किया जाता है इसको Curly Braces बोला जाता है

Comma (, ): इसका इस्तेमाल separate की तरह किया जाता है जैसे multiple variable बनाते समय अथवा function के paramiter को separate करने के लिए.

Colon(:): इसका इस्तेमाल switch case, etc. मे किया जाता है इसे Colon कहते है 

Semicolon(;): किसी statement के आखरी में Semicolon का प्रयोग किया जाता है ताकि पता चल सके की statement समाप्त हो गया इसे Semicolon कहते है 

Asterisk (*): Asterisk का इस्तेमाल pointer variable बनाने किया जाता है 

Assignment operator(=): Assignment operator का इस्तेमाल value assign करने में किया जाता है

Pre-processor (#): इसका इस्तेमाल Pre-processor के लिए किया जाता है यह इस बात को indicate करता है की compiler सबसे पहले Pre-processor को process किया जाएगा

Ampersand (&): इस symbol का इस्तेमाल variable का address access(print) करने के लिए किया जाता है इसे addressof operator भी कहा जाता है