Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Linux practical for sy bca students, Cheat Sheet of Linux skills

The fine content all the necessary topics required for practice of practical

Typology: Cheat Sheet

2021/2022

Uploaded on 10/06/2023

janhvi-pali
janhvi-pali 🇮🇳

1 document

1 / 20

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14

Partial preview of the text

Download Linux practical for sy bca students and more Cheat Sheet Linux skills in PDF only on Docsity!

2 January 1, 2002 /*PRACTICAL NO:12*/ PE A C PROGRAM IN LINUX TO CALCULATE FACTORIAL OF A /*PRACTICAL NAME: DEVELO NUMBER * / /*ROLL NO: 02*/ #include main() { int i,fact=1,n; printf("Enter the value of n\n"); scanf("%d", &n) ; for (i=1;i<=n; i++) { fact=fact*i; } } /*OUTPUT*/ Enter the value of n 5 : The factorial of © given number is 120 printf£("The factorial of the given number is %d", Scanned by TapScanner Page