Skip to main content

Posts

<div><strong>THE GOOGLE BOYS</strong></div> <div>&nbsp;एक बटन के क्लिक पर लाखों वेबसाइट, अरबों पेज लिंक और हजार ज़ेटा बाइट्स की जानकारी! जादू? नहीं ... प्रौद्योगिकी!&nbsp;</div> <div><strong>JIMMY WALES</strong></div> <div>हम सभी अपने दैनिक जीवन में विकिपीडिया का उपयोग करते हैं, क्या हम नहीं हैं? हम जानते हैं कि विकिपीडिया सब कुछ जानता है, लेकिन हम विकिपीडिया, या उस आदमी को कितना जानते हैं जिसने इसे संभव बनाया - जिमी वेल्स ???&nbsp;</div> <div>&nbsp;<strong>SOICHIRO HONDA</strong></div> <div>सोइचिरो होंडा ऑटोमोबाइल उद्योग की एक प्रसिद्ध दूरदर्शी थी। सीमित साधनों और शानदार प्रतिभा वाले व्यक्ति जिन्होंने आज हम ड्राइव करने के तरीके को बदल दिया है। यह संक्षिप्त कहानी उनके लंबे और शानदार जीवन के कुछ दिलचस्प हिस्सों पर प्रकाश डालती है।&nbsp;</div> <div><strong>HENRY FORD</strong></div> <div>&nbsp;यह मिशिगन के एक छोटे से खेत के लड़के...
Recent posts
THE GOOGLE BOYS  एक बटन के क्लिक पर लाखों वेबसाइट, अरबों पेज लिंक और हजार ज़ेटा बाइट्स की जानकारी! जादू? नहीं ... प्रौद्योगिकी!  JIMMY WALES हम सभी अपने दैनिक जीवन में विकिपीडिया का उपयोग करते हैं, क्या हम नहीं हैं? हम जानते हैं कि विकिपीडिया सब कुछ जानता है, लेकिन हम विकिपीडिया, या उस आदमी को कितना जानते हैं जिसने इसे संभव बनाया - जिमी वेल्स ???    SOICHIRO HONDA सोइचिरो होंडा ऑटोमोबाइल उद्योग की एक प्रसिद्ध दूरदर्शी थी। सीमित साधनों और शानदार प्रतिभा वाले व्यक्ति जिन्होंने आज हम ड्राइव करने के तरीके को बदल दिया है। यह संक्षिप्त कहानी उनके लंबे और शानदार जीवन के कुछ दिलचस्प हिस्सों पर प्रकाश डालती है।  HENRY FORD  यह मिशिगन के एक छोटे से खेत के लड़के की कहानी है जो अमेरिका में सबसे अमीर आदमी, फोर्ड मोटर कंपनी का संस्थापक बनने के लिए बड़ा हुआ, एक तकनीकी प्रतिभा, एक व्यापारिक किंवदंती, और पहले बड़े पैमाने पर ऑटोमोबाइल का निर्माता था।

BUY FROM HERE

Tumbbad l Rains of Tumbbad l OST l Soundtrack by Jesper Kyd

Data Types

Data type is basically the form or type of the specific data that can hold variables in the program. Variables is the name of storage location which contain information of Data Type. Types of Data types:- 1:  Integer -(int) eg.10,9,8...  eg. Age of person      (natural no.s)   2:  Float -(float) eg.6.8,9.5,....  eg.Price of anything      (decimal no.s) 3:  Double -(double) eg.7.8967687666867,......       (Long Values After Decimal) 4:  Character -(char) eg. 'a', 'B'...... eg. Grade        (Letters) 5:  String -(char name[]) eg. "Yes", "INDIA"                                          eg. Address      [(0-9) ,a to z, A to Z, Symbols.] 6: Boolean - eg. ON/Off , Yes/No. 7: Void - eg. Usage with functions[void mai...

Lets Start with Basics of Program

#include<stdio.h> #include<conio.h> void main() { clrscr(); printf("Lets\n start Basic of Program"); getch(); } Briefly explanation of the Above Program So, here we use  #include <stdio.h> and #include <conio.h > because these two are the header files and there  is function defined for these two header files And #include means that include these two header files. void is a datatype which uses with the functions and here it uses with main(). void main() { all text b-w them } clrscr(); means clear the output screen. printf (); means show the output text screen. getch(); means hold the output screen.