Invitation to Attend “Connect, Simulate and Innovate using Arduino on Cloud”, an awareness programme
If you are not an organiser or invigilator of the Subscribed college, please register using this Google form
This tutorial series is created using gcc 4.6.1 Ubuntu 11.10. Powerful features, simple syntax, and portability make C a preferred language among programmers for business and industrial applications. Read more
Foss : C and Cpp - Manipuri
Outline: Outline: Function call -types of function calls -function pass by value -function pass by reference
Outline: Outline: Files in C -File handling functions -Opening a File closing a file --example: fopen, fclose -Reading data from a File
Foss : C and Cpp - Marathi
Outline: 1) First C Program -Header Files --example: #include -main() -Curly braces -printf() -semicolon ; - C प्रोग्राम चे संकलन. --उदाहरणार्थ :..
Outline: First C++ Program -Header files --example: #include -main() -Curly braces -cout<< -semicolon ; -C++ program चे संकलन --example: g++ filename.cpp -o output parameter - C++..
Outline: 3)C आणि C++ मधील Tokens --डेटा टाइप्स, कॉन्स्टेंट्स, आइडेंटिफाइयर्स -कीवर्ड्स --उदाहरणार्थ : if, break, else -कॉन्स्टेंट्स --डेटा टाइप्स, --उदाहरणार्थ : int, float, char, d..
Outline: फंक्शन म्हणजे काय. फंक्शन च्या declaration साठी syntax आर्ग्युमेंट्स सहित फंक्शन उदाहरणार्थ :return-type function-name(parameter); आर्ग्युमेंट्स नसलेले फंक्शन उदाहरणार्थ..
Outline: Scope of Variables -परिचय -एक व्हेरिएबल घोषित करण्याचा सिंटॅक्स. --उदाहरणार्थ : data-type var-name; -एक व्हेरिएबल सुरू करण्यासाठी सिंटॅक्स --उदाहरणार्थ: data-type var-name = ..
Outline: प्रोग्रॅम मधील कंडीशन्स तपासणे स्टेट्मेंट्स, म्हणजे काय - if and, साठी सिंटॅक्स -If-else Statement, -एरर्स
Outline: Nested if and switch स्टेट्मेंट -Nested if स्टेट्मेंट्स साठी सिंटॅक्स . -Switch स्टेट्मेंट. - nested-if -switch स्टेट्मेंट साठी सिंटॅक्स . -break स्टे..
Outline: Increment आणि Decrement ऑपरेटर्स -Increment ऑपरेटर्स --उदाहरणार्थ : ++ -Postfix increment --उदाहरणार्थ : a++ -Prefix increment --उदाहरणार्थ : ++a -Decrement Operator --उदा..
Outline: Arithmetic Operators -Arithmetic Operators - ऑपरेटर्स ची बेरीज --उदाहरणार्थ : a + b -ऑपरेटर्स ची वजाबाकी --उदाहरणार्थ : a - b -ऑपरेटर्स चा गुणाकार --उदाहरणार्थ : a * b -..
Outline: Relational Operators -Double Equal to --उदाहरणार्थ: a == b -Not Equal to --उदाहरणार्थ: a != b -Greater Than --उदाहरणार्थ: a > b -Less Than --उदाहरणार्थ: a < b -Greater tha..
Outline: लॉजिकल ऑपरेटर्स -And && -Or || -Not !
Outline: Loops -Loops - while आणि do-while loop साठी सिंटॅक्स. - while आणि do-while loop ची तुलना. - सिंटॅक्स साठी - फॉर लूप - एरर्स.
Outline: Arrays - arrays म्हणजे काय? -1-D Arrays - arrays च्या घोषणे साठी सिंटॅक्स. --उदाहरणार्थ : data type array_name [size]; - arrays ची सुरवात करण्यासाठी सिंटॅक्स. --उदाहरणार्थ: ..
Outline: 2-D Arrays सह कार्य करणे. - 2-D Arrays म्हणजे काय? -arrays चे रेंज. - 2-D arrays घोषित करण्यासाठी सिंटॅक्स. --उदाहरणार्थ: data type array_name[row][column]; -2-D arrays चा आर..
Outline: स्ट्रिंग्स -स्ट्रिंग म्हणजे काय? - स्ट्रिंग्स घोषित करण्यासाठी सिंटॅक्स. - स्ट्रिंग्स चे आरंभीकरण करण्यासाठी सिंटॅक्स. -कीबोर्ड वरुन स्ट्रिंग्स रीड करणे.
Outline: स्ट्रिँग लाइब्ररी फंक्शन -स्ट्रिँग लाइब्ररी फंक्शन म्हणजे काय? - स्ट्रिँग लाइब्ररी फंक्शन चे प्रकार. -Strcpy -Strlen -Strcmp -Strcat
Outline: स्ट्रक्चर्स सह कार्य -परिचय - स्ट्रक्चर चा सिंटॅक्स. -घोषणा आणि आरंभ. -स्ट्रक्चर वेरियेबल ची घोषणा. -स्ट्रक्चर वेरियेबल्स् एक्सेस करणे.
Outline: अंडरस्टॅंडिंग पॉइण्टेर्स -परिचय - पॉइण्टेर चा सिंटॅक्स. --उदाहरणार्थ : int *iptr; -घोषणा --उदाहरणार्थ: int a; (integer a) int *aptr; (pointer to an integer *aptr) aptr ..