Skip to main content

JNTUCEJ Cezar2k17 bike stunt-part 3



For more info regarding technology and pro stuff...visit http://peoplezmind.com/

Comments

Popular posts from this blog

CPU Schedueling programs

        Fcfs program         #include<stdio.h> #include<conio.h> main() { int bt[20], wt[20], tat[20], i, n; float wtavg, tatavg; printf("\nEnter the number of processes -- "); scanf("%d", &n); for(i=0;i<n;i++) { printf("\nEnter Burst Time for Process %d -- ", i); scanf("%d", &bt[i]); } wt[0] = wtavg = 0; tat[0] = tatavg = bt[0]; for(i=1;i<n;i++) { wt[i] = wt[i-1] +bt[i-1]; tat[i] = tat[i-1] +bt[i]; wtavg = wtavg + wt[i]; tatavg = tatavg + tat[i]; } printf("\t PROCESS \tBURST TIME \t WAITING TIME\t TURNAROUND TIME\n"); for(i=0;i<n;i++) printf("\n\t P%d \t\t %d \t\t %d \t\t %d", i, bt[i], wt[i], tat[i]); printf("\nAverage Waiting Time -- %f", wtavg/n); printf("\nAverage Turnaround Time -- %f", tatavg/n); getch(); } Output SJF program #include<stdio.h> #include<conio.h> main() { int p[20], bt[20], wt[20],...

Code A Clock And 'C'

The Clock Program For all the coders out there and those who are looking for crazy stuff in coding,this clock program is a brain riddle and gets you crazy enough. Have you ever tried writing a program that can display a classic clock that actually works?So,here it is. The clock that runs with "C". #include <stdio.h> #include <math.h> #include <stdlib.h> #include <time.h> struct hand{ int x; int y; }; int only_star; char getSymbol(int angle ); int main(int argc, char *argv[]) {     char plane[220][500];     int t,k,x,y,size,clck_x,clck_y,radius;     double  val = 3.14159 / 180; //Input the dimention of the clock. printf("Enter the size of the clock (max -> 200)(best visible at range 30-60) : "); scanf("%d",&size); printf("\nDo you want star symbol for hands (yes -> 1)(no -> 0) : "); scanf("%d",&only_star); //set the dementions of the clock layout. clck_x...

QZingo hack

You might be the one who gets messages from your friends with a link to various websites, and ask us to answer the questions. If the one who sent you is your dear mate or your girl, and imagine you get a very low score. One of such website is QZingo. Have you ever wished to get a high score to stand in the first of the list, Then here is a trick I found after learning how the website's code works. 1) just paste the QId ( asters in the URL. example,  URL :  http://www.qzingo.com/quiz/****** ) 2) Fill in your name. 3) Enter your score you desire of. (non-negative numbers.. can even try a very large number :P ) click on submit. That's it.   https://anvesh1212.github.io/QZingo-Hack/ How the trick works : When you take a look at the source code of the webpage, you can see all the questions in a JSON type. you can also find the Answers for chosen questions in a array named "aids". you can also see a lot of Java...