Skip to main content

Posts

Showing posts from April, 2017

jee main 2017 cut off.

You wont believe guys this time the cut is really very low. even the cut of PwD is 1. i m really surprised.here is look. of one of my friend. http://cbseresults.nic.in    Print this page              Brought to you by National Informatics Centre JEE APEX BOARD SECRETARIAT JOINT ENTRANCE EXAMINATION (MAIN) - 2017 RESULT Roll No : ___________ Name: __________- Mother's Name: __________ Father's Name: ______ Category: GENERAL Sub-Category: NONE State Code of Eligibility: (15) JAMMU & KASHMIR Nationality: Indian Paper-I – Marks Obtained *Paper-II – Marks Obtained Physics Chemistry Mathematics Total Mrk.Obt Mathematics Aptitude Test Drawing Test Total Mrk.Obt NA NA NA NA *Paper-II result will be announced later.   ALL INDIA CRL Rank OBC-NCL Rank SC Rank ST Rank CRL-PwD Rank OBC-PwD Rank SC-PwD Rank ST-PwD Rank B.E./B.Tech ---- ---- ---- ---- ---- ---- ---- B.Arch/B.Planning...

SHOP NOW FOR MOTO G5 AND GET 1000 OFF FOR PRIME MEMBERS ONLY

see my others posts SHOP THE BEST SMARTPHONE AT AN AFFORDABLE PRICE AND GET 1000 OFF IF YOU AN AMAZON PRIME MEMBERS. IF YOU ARE NOT A PRIME MEMBER THAN YOU CAN APPLY FOR PRIME MEMBERSHIP OF AMAZON ONLY AT COST OF Rs. 499( INDIAN CURRENCY). AND THAN MOTO G5 FROM THIS LINK. YOU WILL GET 500 OFF. FEATURES OF PRIME MEMBERS ARE. THEY WILL GET FREE DELIVERY OF EVERY PRODUCT FROM AMAZON FOR A PERIOD OF ONE YEAR. NO MATTER WHAT THE COST OF PRODUCT YOU BUY. YOU WILL GET FREE DELIVERY. ENJOY THIS OFFER. BESIDE THIS YOU WILL GET FREE ACCCESS TO THE AMAZON PRIME VIDEO FOR  A PERIOD OF ONE YEAR.

How To Hack Facebook Password

 Today, I am going to reveal all the methods used by hackers to  hack Facebook account passwords . If you know these methods, you can defend against potential hackers who may attempt to gain access to your Facebook account. When attempting to hack your Facebook account, hackers may: 1. Hack Facebook account password using Phishing attack 2. Hack Facebook account password remotely using Keyloggers and RAT’s 3. By hacking the primary email address the user has used for creating Facebook account 4. Social Engineering or simply guessing your friend’s password. 4 ways to Hack Facebook Account Password Hack Facebook Account Password Using Phishing Attack: I am explaining this method first because it’s the easiest and most popular method for hacking Facebook passwords. If you’re interested, you can also perform a Google search to find various Facebook hacking methods – the Phishing technique will always be first. I will explain the methods accordi...

COMPONENT OF C PROGRAM

The Components of a C Program Every C program consists of several components combined in a certain way. Most of this book is devoted to explaining these various program components and how you use them. To help illustrate the overall picture, you should begin by reviewing a complete (though small) C program with all its components identified. Today you will learn: • About a short C program and its components • The purpose of each program component • How to compile and run a sample program The Program’s Components The following sections describe the various components of the preceding sample program. Line numbers are included so that you can easily identify the program parts being discussed. The main() Function (Lines 8 Through 23) The only component that is required in every executable C program is the main() function. In its simplest form, the main() function consists of the name main followed by a pair of parentheses containing the word void ((void)) and a pair of br...

Run a C program

Download the C compiler from here . download C compiler and then run the following program than see the output. The First Type & Run Enter and compile the following program. If you get any errors, make sure you entered the program correctly. The usage for this program is print_it filename.ext, where filename.ext is the source filename along with the extension. Note that this program adds line numbers to the listing. (Don’t let this program’s length worry you; you’re not expected to understand it yet. It’s included here to help you compare printouts of your programs with the ones given in the book.) LISTING T&R 1 print_it.c 1: /* print_it.c—This program prints a listing with line numbers! */ 2: #include <stdlib.h> 3: #include <stdio.h> 4: 5: void do_heading(char *filename); 6: 7: int line = 0, page = 0; 8: 9: int main( int argv, char *argc[] ) 10: { 11: char buffer[256]; 12: FILE *fp; 13: 14: if( argv < 2 ) 15: { 16: fprintf(stderr, “\nP...

GETTING STARTED WITH C

Getting Started with C Welcome to the sixth edition of Sams Teach Yourself C in 21 Days! Today’s lesson starts you toward becoming a proficient C programmer. Today you will learn: • Why C is a great choice among programming languages • The steps in the program development cycle • How to write, compile, and run your first C program • About error messages generated by the compiler and linker A Brief History of the C Language Why Use C? In today’s world of computer programming, there are many high-level languages to choose from, such as C, Perl, BASIC, Java, and C#. These are all excellent languages suited for most programming tasks. Even so, there are several reasons why many computer professionals feel that C is at the top of the list: • C is a powerful and flexible language. What you can accomplish with C is limited only by your imagination. The language itself places no constraints on you. C is used for projects as diverse as operating systems, word processors, graphi...

a C program for SORTING

bubble sort. My dear friends , today we will discuss a program on sorting. How we can sort a list in ascending or an descending order with the help of C  program. Here is the program #include<stdio.h> #include<conio.h> void main() { clrscr(); int i,j,temp,n,array[100]; printf(“\n how much and enter the elements for array”); scanf(“%d”,&n) for(i=0;i<n;i++); scanf(“%d”,&array[i]); for(i=0;i<n;i++) { for(j=0;j=n-i-1;j++) { if(array[j]>array[j+1])     { temp=array[j];       array[j]=array[j+1];       array[j+1]=temp;    }  } } Printf(“\n array in sorted  order is”); for(i=0;i<n;i++) printf(“%d”,array[i]); getch(); }

NEW WHATSAPP FEATURE

WHATSAPP IS GOING TO UPDATE ITS NEW BETA VERSION IN PLAYSTORE SOON. IN THE NEW FEATURE OF WHATSAPP  WE CAN RESEND OR DELETE OUR SENDED MESSAGE IN THE TIME INTERVAL OF 5 MINUTES. IF OUR FRIEND IS OFFLINE. OTHERWISE AT THE INSTANT HE WILL SE THE MESSAGE. TILL NOW THIS IS NOT AVAILABLE BUT TESTING OF THIS NEW VERSION IS ONGOING AND WILL BE SOON AVAILABLE ON PALYSTORES. 

BASICS OF C

Basics of C. C language consists of datatypes, variables and constants. Datatypes are those which hold some values during the execution of program.  For eg. int . int is the datatype which can hold integer values. Float . it is the datatype which hold the fractional value. Char is the datatype which can hold the characters. . And the most important thing is C is a case sensitive language. int and Int both have different meanings. some examples of datatype are . here is a little illustration of such datatype in C program. #include<stdio.h> void main() { int a=1; float b=0.0f; char c='a'; printf("%d%f%c", a,b,c); }  At the top these are header files which contain function printf which is being used in this program.  The out of the program will be 10.0a.  

My First Post on Internet.

Hello welcome to my blog. I made this blog to tell something interesting about technology. If you wanted to know more about technology means how it works and lot of important stuff than please stay connected with us. And this is my first post for just testing purposes. Thank you. If you have any query please click here  .