Posts

Showing posts from December, 2014

Antivirus for mobile and PC

Image
Download Best Free antivirus for your mobile and desktop/laptop Many of you are surfing and downloading content from the internet, but have you ever thought that how unsafe is that without an antivirus which is capable of detecting virus, bugs and other threats. You may also get virus in your PC/laptop by inserting memory devices like USB pen-drives, external hard disks, other's virus infected mobile phone, memory card etc. File sharing through network is also one of the reason for getting infecting by Malware and virus. Here we are suggesting some of the best open source antivirus available for desktop PC. AVAST FREE ANTIVIRUS :- Avast antivirus(pic courtesy avast.com)  The avast antivirus is one of the most used and best free or open source antivirus which is used for official as well as home purpose. If regularly updated, than it can be very helpful to detect virus online and offline.

Blog Post to FB page automatically

Image
If you want your blog posts to be posted directly to your FB page OR your FB profile so here is a simple solution without using any application. Just give this recipe ( like an algorithm) a freedom(allow) to posts your blog posts to your FB Page or Profile whenever it is published.

Arrays in C

In this post we are providing a power point presentation to explain a basic concept of Array. Some basic Programs of arrays will be provided in future posts. Meanwhile you can check out Overview Of C ,  Constants, Datatypes and Variables PPT taken from my slide share ppt : - Arrays Basics

Download Apache Open Office

Image
Open Office is a open source software similar to Microsoft office provided by Apache. Like Microsoft Office , Open Office Contains  Spreadsheet(calc) - Similar to Excel Word processor(writer) -Similar to Word Presentation app.(Impress) -Similar to Power point Drawing Application - Not in MS office but similar to paint Data base application(base)- Similar to Access Formula Editor(math) Apache open office pic courtesy - Openoffice.org Go to Download Link given below choose your Operating system and than choose to save into your prefered directory. After downloading open the installation file and install into the system's partition(recommended) and than wait for sometime till the installation completes ...ENJOY!!! Download Apache Open Office from here . You can also see some of our other posts too: How to use torrent Download VLC Media Player

VLC media Player 2.1.4 for Windows xp,vista,7,8,8.1

Image
Download latest VLC media Player 2.1.4 from torrent easily and faster. VLC media Player Pic courtesy - Videolan VLC media player is audio/video player preferred to watch high definition movies on PC/laptop developed by VideoLan . It is a free media player provided by Video Lan hence it is widely used all over the world, but not only it is free but its result is much better than some other free players and also some paid players too. Here is the download link for VLC media player 2.1.4(latest version) from official website and torrent: OFFICIAL LINK Torrent LINK If you don't know how to use Torrent than you can click here to know how to use torrent.

How to use torrent (Bittorrent/Utorrent)

Image
I Have Seen on many blogs and other discussion forums, where torrents link are given to download some files, people asking about how to use those torrent links, So here we are with this post to spread this knowledge of how to use these torrent clients and websites to download useful faster, and for free. Bit-torrent and U torrent are two torrent applications which are used to download files from torrent websites like kickass , thepiratebay , h33t , et cetera They provide movies, songs,software like operating systems(pirated), games and many more things. Some Users upload the torrent files of those files to be downloaded and seed them, due to which other users can download those files indirectly from that uploader, through peer-to-peer connection in  piece

Constants, Variables and Data Types in C

Image
In this post we will explain the basic things of C like constants, variables, and data types. If you have not read Overview of C and want to read that first you may  click here Introduction   A programming language helps to process certain kind of data consisting of numbers, characters and strings and to provide useful output. The task of processing a data is accomplished by executing a sequence of precise instruction called a program. These instruction or program is constructed or written or formed using symbols and words according to some strict rules which is called syntax rules.   Each instruction should follow the syntax instruction of respective information.   Like other Languages C also has its own syntax library or Grammar.

Overview of C.

In this post we will be showing you some overview of C language. History of C: -    C was evolved from ALGOL (first computer language to use block structures), BCPL (Basic Combined Programming Language), and B by Denis Ritchie at the Bell Laboratories in 1972. It uses many concepts from these languages and added the concept of data types and other powerful features. Since it was developed along with the UNIX operating system, it is strongly associated with UNIX. 

C program on Binary Search Algorithm

Image
This program uses the Binary search algorithm works as:- first sorts the strings entered and then searches the demanded string's address. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 #include<stdio.h> #include<conio.h> #include<string.h> int main () { int i , j , n , f , l , flag , mid ; char str [ 20 ][ 100 ], temp [ 20 ]; char word [ 100 ]; clrscr (); puts ( "\t\nEnter the no. of string to be sorted:" ); scanf ( "%d" , & n ); f = 0 , l = n ; printf ( "Enter %d strings(must not be longer than 100 words)\nput a ENTER when one string ends:\n" , n ); for ( i = 0 ; i <= n ; i ++ ) gets ( str [ i ]); //sorting the string for ( i = 0 ; i <= n ; i ++ ) { for ( j = i + 1 ; j <= n ; j ++ ) { if ( strcmp ( str [ i ], str [ j ]) > 0 )

C program for Circular Queue

This is a C program for Circular Queue which includes insertion, Deletion, and Display of circular queue. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 #include<stdio.h> #include<conio.h> #include<string.h> #define max 11 int f =- 1 , r =- 1 , que [ max ]; int insert ( int ); int qdel (); int qdisplay (); void main () { int c , y ; char k ; clrscr (); do { printf ( "\n\t\t*****ENTERUR CHOICE FOR CIRCULAR QUEUE*****\n" ); printf ( "\n1)INSERT\n2)DELETE\n3)DISPLAY\n" ); scanf ( "%d"

C program for Doubly Linked List

This program is for Doubly linked list in C language. It can perform Doubly linked list insertion at any place in linked list, deletion and displaying list. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 #include <stdio.h> #include<conio.h> #include<stdlib.h> struct node { int info

The Three Haunted Hours

The Three Haunted Hours “ S attar minute, sattar minute hain tumhare paas. Shayad tunhari zindagi ke sabse khaas sattar minute.  Aaj tum accha khelo ya bura, yeh sattar minute tunhe zindagi bhar yaad rahenge. To kaise khelna hai yeh aaj me tumhe nai bataunga, bas itna kahunga ki jao aur yeh sattar minute jee bhar ke khel lo kyun kee iske baad aane wali zindagi me, chahe kuch sahi ho ya naa ho, chahe kuch rahe ya na rahe, tum haaro ya jeeto, Lekin yeh sattar minute, tumse koi nai cheen sakta, koi nahi!... Kyunki me janta hun ki agar yeh sattar minute is team ka harek player, apnee zindagi ki sabse badhiya hockey khel gaya, To yeh sattar minute, Khuda bhi tumse waapas nai maang sakta…!”

C Program of singly Linked List.

This is a simple program to create singly linked list of adding, deleting, and displaying the nodes from front. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 //Header files #include <stdio.h> #include <conio.h> #include <math.h> //structure for a node struct node { int data; struct node *next; }*first,*temp,*dis; /*first is the first node,temp is the temporary new node and display is a temporary node for displaying linked list*/ //this function creates OR adds a new node to the linked list void create () { int d; //Variable for storing the data in the node temp=( struct no