Monday, February 1, 2016

Monday, February 16, 2015

Wednesday, October 8, 2014

Important Downloads-First semester

First semester

TCS101-Syllabus
Download Link
http://www.mediafire.com/view/k35tkgyp881iugl/I_sem_syllabus.pdf


PDF-Lecture Notes -Unit 1 All (TCS-101)
Download Link
https://www.mediafire.com/?4w8o4snjdydzxwv


PDF-Lecture Notes -Unit 2 All (TCS-101)
Download Link
https://www.mediafire.com/?3xdddo3iaxiwh1z



Lecture Notes Unit 4 All (TCS-101)
Download Link
https://www.mediafire.com/?96wxq7f3ym9ql88


Lecture Notes Unit 5 All (TCS-101)
Download Link
https://www.mediafire.com/?g0a1g3gcwsyegfa


PPTs
Marksheet In XL
Download Link
https://www.mediafire.com/?a7a5161183g69g6

PPT Unit4-Magnetic and Optical Storage
Download Link
https://www.mediafire.com/?ec9z95z853fy3bv


PPT Unit4-Number Systems
Download Link
https://www.mediafire.com/?aj3t23ni9g09h4j


PPT Unit4-RAM and ROM
Download Link
https://www.mediafire.com/?23g3cdhyjicob0v


Assignments (TCS101)
Assignment 1 (Covering previous question papers from Unit-1)
Download Link
https://www.mediafire.com/?fh44gpyoyace03t


Assignment 2 (Covering previous question papers from Unit-2)
Download Link
https://www.mediafire.com/?lzbe7dxls7og35l


Assignment 3 (Covering previous question papers from Unit-3)
Download Link
https://www.mediafire.com/?4x2fk4g7886veqv

Assignment 4 (Covering previous question papers from Unit-4)
Download Link
https://www.mediafire.com/?baczrys1mndd3o6


Assignment 5 (Covering previous question papers from Unit-5)
Download Link
https://www.mediafire.com/?72chtzv2lajc6lj


ALL assignments in combined File:
Assignment 1-5 (Covering previous question papers from Unit 1-5)
Download Link


Term work/ Practical File Guidelines
PCS151 C Programming Lab Work/Term Work/Practice Programs
Download Link
https://www.mediafire.com/?8whsnge02ji1ta2


C Programming Lab Journal Instructions
Download Link
https://www.mediafire.com/?28getdp2dw98c2n


Cover page for Practical File-Term Work
Download Link
https://www.mediafire.com/?nlv18hnt4jjq8ne


Certificate for Practical File
Download Link
https://www.mediafire.com/?5vpm12z2p1di3ek


Index for Practical File
Download Link
https://www.mediafire.com/?5lbiijnbv7lr6f7

Algorithm and Flowchart

Algorithm and Flowchart Theory
Download Link
http://technoimps.blogspot.in/p/algorithms-and-flowcharts.html


Algorithm and Flowchart Example-ALL
Download Link
http://algorithmsandflowcharts.blogspot.in/

Algorithm and Flowchart For Sequential & if-else program
Download Link
https://www.mediafire.com/?qylmxf0o4wyzta1


Algorithm and Flowchart For Nested Loops-Pattern Program
Download Link
https://www.mediafire.com/?c3ddi3odb7x9j7a

Thursday, December 26, 2013

C Programs

To See Source Code of All 'C' Programs
Click Here
http://c-programs-database.blogspot.in/

for all programs 

See  "BLOG ARCHIVE-LIST OF PROGRAMS" 

(AT RIGHT SIDE OF PAGE)

Friday, December 13, 2013

Write a C program to print the following star program. Also write down the algorithm

#include<stdio.h>
#include<conio.h>
int main()
{
 int num,r,c;
 printf("Enter loop repeat number(rows): ");
 scanf("%d",&num);
 for(r=1; r<=num; r++)
 {
  for(c=1; c<=r; c++)
     printf("*");
  printf("\n");
 }
 getch();
 return 0;


Output

*
**
***
****
*****

step1: num<--0, r<--0, c<--0
step2: Read number num
step3: Repeat step 4 for r=1,2,3....num
step4: Repeat step 5 for c=1,2....r
                    Begin

        print "*"
                    End
step8: 
step9: go to next line
step10: r=r+1
        [end of loop step4]
step11: stop