Skip to main content

Posts

Showing posts from January, 2012

ADBMS Slides Fall 2011

https://docs.google.com/ presentation/d/ 1xe2fsEF-eOF1CTovegiDLmjdX8p68e 6tRBObirwCEAM/edit docs.google.com   https://docs.google.com/ presentation/d/ 1viF1c6GQhNlmcveGNg_E4dR-aI0hdz T8SszuGWVbD84/edit   docs.google.com https://docs.google.com/ presentation/d/ 109YSOMdHOPVy3_YekXmovlhF0phW9I q73CL6F8tBurQ/edit accounts.google.com https://docs.google.com/ presentation/d/ 1Vw3q96OWgiDcZ1wGaZCbKtCFxm4zRy w0EoK0ENKPDzY/edit accounts.google.com https://docs.google.com/ presentation/d/ 1f3qLksB0SuE8SUsKwmydGHG1Kida_D A2GUISDAYU35s/edit accounts.google.com https://docs.google.com/ presentation/d/ 12r5IEU-iBxOCt9t06Blp7XfJSy2-eN TxTc8eF4ooxQk/edit accounts.google.com

Free Download BSR Screen Recorder Complete Latest Version with Keys

BSR Screen Recorder captures video, sound and movies of no matter which you see on your screen and records to AVI (Standard Video Format), SWF (Flash File), WMV (Windows Media Video) and EXE (Executable File). Any segment of the screen can be selected for recording. You can zoom in and out during recording with 2D and 3D zooming features. Record audio from microphone, speakers ("what you hear"), CD or anything else. Record subtitles, draw to screen while recording, cut and save portions from videos, add/mix sounds and unfolding, join videos, change video speeds, dimensions and compression, create movies from photo files, synchronize audio automatically.   BSR.Screen.Recorder.4.3.0.6.rar   BSR Screen Recorder   BSR.Screen.Recorder.rar   BSR_Screen_Recorder5.rar  

How to tokenize a Pascal Program through file open

#include <conio.h> #include <ctype.h> #include <stdio.h> #include <dos.h> #include <Process.h> #include <Stdlib.h> #include <io.h> #include <string.h> void main () { FILE *fs, *ft; char ch, cha; //char st[250]; char charray[50000]; clrscr(); int i; i=0; //WELCOME MESSAGE     printf ("This program will tokenize a Pascal program\n");         //READING A FILE     if(access("MYFILE.TXT",0)==0)     {         fs = fopen("MYFILE.TXT","r");             if (fs == NULL)                 {                     puts ("Cannot open source file");                     getch();                     exit(0);                 }         ft = fopen ("YOURFILE.TXT", "w" );             if (ft == NULL)                 {                     puts ("Cannot open target file");                     fclose ( fs );                     getch();