“If there’s a book that you want to read, but it hasn’t been written yet, then you must write it.”…
Ansible Pune Meetup August 2k19
The more you learn the more you earn. So I am back with one more event report. 😜 It’s a…
Ansible Pune Meetup June 2k19
Ansible Pune Meetup It’s always fun to meet new people to learn new things and get something new, So I…
Fedora 30 Meetup and Release Party
Fedora 30 Meetup and release party It was a pleasing day, I wake up in the morning and got to…
STRUCTURE IN C
STRUCTURE: You are aware that a variable stores a single value of a data type. Arrays can store many values…
2-D Array and 2-D strings in C
2D Array and 2D strings A 1-D array is a collection of several elements that contain only one row of…
Pointers In C
Pointers in C 1. pointer is a user define data type. 2. A pointer variable stores address of another variable…
FUNCTION WITH STRINGS IN C
Functions with Strings :- We have a studied about inbuilt function of strings now we will create our own functions…
Inbuilt Functions In C
Inbuilt function for String Processing :- NOTE : All Inbuilt Function of String need string.h library. 1. strcpy(Target_String , Source_String…
Strings In C language
String:- String is group of alphabets,digits and symobls. In C language, a string represented by char array. e.g. char S[20];…