Skip to main content

Posts

Datatypes

Recent posts

Basics of C with example

                          C   language                             C is a procedural programming language. It was initially developed by Dennis Ritchie and Ken Thompson in the year 1972 at AT and T bell lab of USA .  It was mainly developed as a system programming language to write an operating system. The main features of C language include low-level access to memory, a simple set of keywords, and clean style, these features make C language suitable for system programmings like an operating system or compiler development. It is mainly used to convert high level code into low level language code and vice versa. High level language code includes.........     A,B,C......                                           ...

Difference in C and C++ language

  Difference between C and C++ Language.. C                            C is procedure oriented programming (POP). In C programs are divided into small parts known as functions. Encapsulation,abstraction,Inheritance and polymorphism are not supported in C. Inline functions and virtual functions are not available in C. Function overloading and operator overloading are not possible in C. C uses scanf() and printf() functions for input/output. C uses malloc() and free() functions for dynamic memory allocation and dealloaction. C does not support exception handling. Filename extension is . Follows top down approach in program design. Example...1.Program to add two numbers. #include <stdio.h> #include<conio.h> void main() {    int a,b,c;   printf("Enter two numbers :");   scanf("%d,%d",&a,&b);   c=a+b;   printf("Addition is : %d",c...

Technology and Culture

Technology Technology is the sum of techniques , skills , methods and processes used in production of goods , services or in accomplishment of objectives such as scientific investigation.       Culture Culture is an umbrella term which encompasses the social behavior and norms found in society as well as knowledge ,beliefs, art  ,laws,customs and habits of  the individuals in the group.               TECHNOLOGY + CULTURE Technology is changing every aspect of our lives. The benefits provided by new digital  approaches are having a huge impact on our societies. However, one of the greatest  business challenges is not about the devices, software or solutions – it is about how we  manage the process of cultural change. I have quickly seen for myself how technology is adopted in different ways and how countries are digitally divided by access and availability . Many facets of global communications toda...