Hi Friends,I hope you are enjoying the day.Feeling blessed for 2015, now I have a list of friends. I hope this new year bring too much smiles n success.Thank y ...
var Ymax=8; //MAX # OF PIXEL STEPS IN THE "X" DIRECTION var Xmax=8; //MAX # OF PIXEL STEPS IN THE "Y" DIRECTION var Tmax=10000; //MAX # OF MILLISECONDS BETWEEN PARAMETER CHANGES //FLOATING IMAGE URLS FOR EACH IMAGE. ADD OR DELETE ENTRIES. KEEP ELEMENT NUMERICAL ORDER STARTING WITH "0" !! var floatimages=new Array(); floatimages[0]='http://file1.hpage.com/001617/02/bilder/butterfly2.gif'; floatimages[1]='http://file1.hpage.com/001617/02/bilder/butterfly2.gif'; ...
Dear Student, Term End practical examination Dec 2015 for MCA programme is scheduled at IGNOU Study Centre, UPTEC Computer Consultancy, Rana Pratap Marg, Lucknow from 10th January 2016. It is advised to contact examination supdt one day prior to the practical examination to know about your session and batch. Course wise list is also uploaded in RC Lucknow website. Regional Director, IGNOU RC Luckno ...
MCSL-016 13-01-2016 - HTMLMCSL-017 15-01-2016 - C & AssemblyClick here for 20 ...
Design a flow chart and write an interactive program for the problem given below:
Design a flow chart and write an interactive program for the problem given below: Assume that the United States of America uses the following income tax code formula for their annual income:First US$ 5000 of income: 0% taxNext US$ 10,000 of income: 10% taxNext US$ 20,000 of income: 15% taxAn amount above US$ 35,000: 20% tax.For example, somebody earning US$ 38,000 annuallywould owe US$ 5000 X 0.00+ 10,000 X 0.10 + 20,000 X 0.15 + 3,000 X 0.20,which comes to US$ 4600. Write a program that uses a ...
#include<stdio.h>#include<conio.h>#include<string.h>struct emp{ char name[10]; int age;};File handling conceptvoid NameAndAgeStoring(){ struct emp e; FILE *p, *q; p= fopen("list.txt","a"); q= fopen("list.txt","r"); printf("enter the name and age"); scanf("%s %d",e.name,e.age); fprintf(p,"%s %d",e.name,e.age); fclose(p); do{ fscanf(q,"%s %d",e.name,e.age); printf("%s %d",e.name,e.age); } while(!feof(q)); getch();}File handling concept - Create and store valuevoid file(){ FILE ...