Re: [algogeeks] Re: symantec

2011-09-29 Thread rashmi i
mmm... i dont remember the questions but these are the 1s i faintly remember: 1. semaphore based qs 2. a question from theory of computation 3. some questions on the big O-notation. 4. b-tree vs b+-tree 5. some questions on unix 6. http,tcp based qs.. well sorry but these r da 1s i m able 2 recolle

Re: [algogeeks] Re: symantec

2011-09-28 Thread swetha rahul
@ Rashmi thanks a lot On Thu, Sep 29, 2011 at 8:49 AM, siva viknesh wrote: > @rashmi .thanks of lot for sharing.It would be of great > help if u detail much about written test pattern and share the > questions whatever u remember...thanks in advance.. > > On Sep 29, 6:40 am, sush5

Re: [algogeeks] Re: Symantec System programming ques

2011-09-17 Thread sagar pareek
I am supposing that file is count.txt and is already exists so in initials of the main() do this *int count; FILE* fp; if((fp=fopen("count.txt","r"))==NULL) { printf("File does not exist\n"); exit(0): } fscanf(fp,"%d",&count); count++; fclose(fp); fp=fopen("count.txt","w"); fprintf(fp,