Skip to main content

Posts

Showing posts from February, 2017

Basic of Unions in C Programming Language

Unions A union is a grouping different kind of data ans show it is user defined data type.So what is different between structure and union? In structure individual member are having separate memory location,while in union all the members occupy same memory location.So only one memory location can be used to store all elements on union so that art a time only one member will have correct value in it. For Example.. struct stud                                                                       union stud {                                                                                      ...

Basic Introduction of Python (about libraries)

Basic Introduction on Python Hello Guys, Today i'm going to taking about python programming language.I'm going to make some other blog for more on python programming language.So i hope you get something from this blog and if you have any question then ask i will solve your queries. Python is a widely used high-level programming language for general-purpose  programming, created by Guido van Rossum.  Aninterpreted language, Python has a design philosophy which emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly braces or keywords), and a syntax which allows programmers to express  concepts in fewer lines of code than possible in languages such C++ or Java.  It is a high-level open source programming language. It is a powerful ,fast and dynamic. It is Object-oriented and Inheritance which is easy to lean. In C programming language or any language when our application or project require s...