#include <stdio.h>#include <stdlib.h>int main(int argc, char *argv[]) // command line arguments{if(argc!=5) { printf("Arguments passed through command line " \ "not equal to 5"); return 1;} printf("\n Program name : %s \n", argv[0]); printf("1st...
Sunday, 16 August 2015
C program to copy contents of one file to another file
#include <stdio.h>#include <stdlib.h> // For exit()int main(){ FILE *fptr1, *fptr2; char filename[100], c; printf("Enter the filename to open for reading \n"); scanf("%s", filename); // Open one file for reading fptr1 = fopen(filename, "r"); if (fptr1 == NULL) ...
Tuesday, 11 August 2015
Google announces massive reorganization, becomes subsidiary of umbrella corporation Alphabet
Google on Monday announced a major reorganization and management shuffle that includes a new holding company called Alphabet (http://abc.xyz) as well as a new CEO for Google.
Google has grown from its beginnings as a search engine to a
sprawling company that has its hands in all sorts of tech-related
projects. The company is operating well, notes co-founder Larry Page,...
Windows 10 vs. Windows 8.1 vs. Windows 7 Performance
Three years ago we were benchmarking Microsoft's then latest operating system, Windows 8.
At the time we were keen to make sure Windows 8 performed as well as
Windows 7, which was a huge upgrade from 2006's Windows Vista.
In the end, we determined that Windows 8 was on par with 7 and at times a fraction faster, leading us to this conclusion in our performance review:
...
Friday, 7 August 2015
Fingerprint scanners on Android phones are far less secure than on iPhones

The Samsung Galaxy S5's fingerprint reader security vulnerabilities were well documented over a year ago. But if you were hoping the world’s most popular Android device manufacturer had mended its exposure to easy hacks since then,recent Black Hat revelations will come as a disappointing surprise.
During the esteemed and anxiety-inducing security convention,...
C program to Calculate Factorial of a Number Using ...
#include<stdio.h>
#include<conio.h>
void main()
{
int a,f=1,i;
clrscr();
printf("Factorial i : ");
scanf("%d",&i);
for(a=1;a<=i;a++)
{
f=f*a;
}
printf("ANS %d = %d ",i,f);
getch();
}
Output:
Factorial i : 3
ANS 3 = 6
...
FIND FACTORIAL OF A NUMBER USING RECURSION IN C PROGRAM
#include<stdio.h>
#include<conio.h>
int fact(int);
void main()
{
int num,f;
clrscr();
printf("\nEnter a number: ");
scanf("%d",&num);
f=fact(num);
printf("\nFactorial of %d is: %d",num,f);
getch();
}
int fact(int n){
if(n==1)
return 1;
else
return(n*f...
Thursday, 6 August 2015
Intel Core i7-6700K "Skylake" CPU Review

Last month we finally got our first look at Intel's latest 14nm technology for desktop computers when we reviewed the Core i7-5775C, codenamed Broadwell. Intel's transition to the 14nm node was difficult and as a result Broadwell processors were delayed to the point where they practically don't exist in the retail market.
Even as I write this it's extremely difficult...
Pages
Popular Posts
-
What Is A Motherboard? What Are The Different Components Of A Motherboard? Image: Wikipedia Short Bytes: A motherboard acts as a pl...
-
Pepsi vs. Coke, Edison vs. Tesla, Star Wars vs. Star Trek, history is filled with famous rivalries, but few have matched the intensity and...
-
Run Windows 98 And Linux In Your Web Browser, Thanks To JavaScript And NodeJS Short Bytes: A coder, known as Fabian on GitHub, ...
-
PHP vs Ruby which programming language is better for web development PHP and ruby are trending scripting languages for the web servers...
-
Happy Birthday Steve Jobs: The Genius Life Of Apple’s Founder Short Bytes: The life of Steve Jobs wasn’t a straight line. He fa...
-
Google on Monday announced a major reorganization and management shuffle that includes a new holding company called Alphabet ( http://abc....
-
Master Python: Save over 95% on 50+ hours of training For prog...
-
Last month we finally got our first look at Intel's latest 14nm technology for desktop computers when we reviewed the Core i7-577...
-
Top 5 Billionaires In The Technology World Short Bytes: It’s time to meet the top five billionaires in the technology world. Th...
-
10 Best Operating Systems For Ethical Hacking And Penetration Testing | fossBytes 2016 Short Bytes: Wondering which is the best...
Recent Posts
Text Widget
Pages
Blog Archive
-
▼
2015
(9)
-
▼
August
(9)
- Command Line Argument C Program
- C program to copy contents of one file to another ...
- Google announces massive reorganization, becomes s...
- Windows 10 vs. Windows 8.1 vs. Windows 7 Performance
- Fingerprint scanners on Android phones are far les...
- C program to Calculate Factorial of a Number Using...
- FIND FACTORIAL OF A NUMBER USING RECURSION IN C PR...
- Intel Core i7-6700K "Skylake" CPU Review
-
▼
August
(9)
Powered by Blogger.
Text Widget
About Me
Copyright © 2025
NTech | Powered by Blogger
Design by Flythemes | Blogger Theme by NewBloggerThemes.com