Showing posts with label Computer. Show all posts
Friday, February 1, 2019
Google+:Rise and Fall😢😢
Posted by
Pranshu Bahuguna,
on
February 01, 2019
It was created by Vic Gundotra, Bradley Horowitz in Javascript.
![]() |
| Vic Gundotra |
It becomes quite famous, the community portal is the best in the google plus, where a user joins together to talk or research about one topic.
![]() |
| Bradley Horowitz |
In November 2015, there is a change in the design to make it simpler, faster for the user to connect Google+ easily and new features like community and collection were added which become very famous among the user. Educational, News and many communities were created by the user, where people all around the world gather together to share their views on a specific topic. We can join as many as communities. Google+ may lack behind the facebook but many educational article and news were shared on google plus first. Notification widget on google chrome will disappear on 7 March 2019.
Blogger prefers Google+ to share their views or articles more than facebook.
Articles on Google+ can be shared all over the world but on Facebook, it can only be shared among friends. Users can download their pictures from their account before April otherwise there will be deleted.
Everyone gonna misses their Google+ account and community. The friend circle we created there, will gonna be with us again.
Monday, January 28, 2019
History and Basics of C programming
Posted by
Pranshu Bahuguna,
on
January 28, 2019
C is a very useful and widely used programming language all over the world. It is basically the first programming language which gets so much attention and used by many of the programmers from the starting. It gets is the name 'C' because two programming language ie 'A' and 'B' has been developed before its launch, it is the modified version of both these languages, 'C' was developed by
Dennis M. Ritchie in 1972 and first implemented on DEC PDP-11 computer to develop the UNIX operating system.
Dennis M.Ritchie
Many of you were thinking what is a programming language?
A programming language is a set of commands to instruct the computer to perform a task. The commands are known as 'code', these codes are then converted into the machine language by the compiler. A compiler is application software which converts the high-level language into a low-level /machine language.
Header file
A header file is a file with extension .h which is used to define the functions that are already stored in the preprocessor file. We don't have to write the whole code to execute that function, we can execute that function by writing the header file at the top.
For ex: #include <stdio.h> (standard input/output) is responsible for taking input by the user and output at the screen.
#include <stdlib>(standard library) is responsible for function which involving memory location,process control and conversion.
Main()
Whenever we compile the program your compiler search for the "main()" function which is the entry of every programming code. int is used before the main function which tells the datatype and at the end, we end with the return0 which is the termination of the program.
Printf & Scanf
Printf is the function in stdlib to display the output in the screen. To print a number we need a
place holder(%d) which is in quotation mark which stores the output.
For example printf("%d", integer); we need to place a semicolon at the end of the line. The compiler reads the ";" semicolon as the line terminator.
For printing Decimal, we use "f" in place of "d" with the percentage sign and "s".to add the text.
If you want to add multiple integers, place multiple place holder.
printf("%d %d %d",32,56,98);
Scanf is used to take the input from the user.
scanf("%d". &number);
& is used as a simple way to pass the pointer to the store value.
#include<stdlib.h>
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}
this is the first c program to print' hello world'.
If you any doubt comment in the comment section.
Dennis M. Ritchie in 1972 and first implemented on DEC PDP-11 computer to develop the UNIX operating system.
Many of you were thinking what is a programming language?
A programming language is a set of commands to instruct the computer to perform a task. The commands are known as 'code', these codes are then converted into the machine language by the compiler. A compiler is application software which converts the high-level language into a low-level /machine language.
Header file
A header file is a file with extension .h which is used to define the functions that are already stored in the preprocessor file. We don't have to write the whole code to execute that function, we can execute that function by writing the header file at the top.
For ex: #include <stdio.h> (standard input/output) is responsible for taking input by the user and output at the screen.
#include <stdlib>(standard library) is responsible for function which involving memory location,process control and conversion.
Main()
Whenever we compile the program your compiler search for the "main()" function which is the entry of every programming code. int is used before the main function which tells the datatype and at the end, we end with the return0 which is the termination of the program.
Printf & Scanf
Printf is the function in stdlib to display the output in the screen. To print a number we need a
place holder(%d) which is in quotation mark which stores the output.
For example printf("%d", integer); we need to place a semicolon at the end of the line. The compiler reads the ";" semicolon as the line terminator.
For printing Decimal, we use "f" in place of "d" with the percentage sign and "s".to add the text.
If you want to add multiple integers, place multiple place holder.
printf("%d %d %d",32,56,98);
Scanf is used to take the input from the user.
scanf("%d". &number);
& is used as a simple way to pass the pointer to the store value.
#include<stdlib.h>
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}
this is the first c program to print' hello world'.
If you any doubt comment in the comment section.
Follow my insta page:
https://www.instagram.com/elec.tricknowledge/?hl=en
subscribe for more article on c and other technical knowledge.
subscribe for more article on c and other technical knowledge.
Subscribe to:
Posts
(
Atom
)



