Study CS Engg

www.studycsengg.gq

  • Home
  • Syllabus
    • Semester 3
    • Semester 4
    • Semester 5
    • Semester 6
    • Semester 7
    • Semester 8
  • Notes
  • Question papers
    • Semester 3
    • Semester 4
    • Semester 5
    • Semester 6
    • Semester 7
    • Semester 8
  • Computer programs
    • C programs
    • C++ programs
    • PL/SQL programs
    • Microprocessor programs
    • Java programs
    • Lex programs
    • Perl programs

C Programs







1. C program to count vowels, consonants, letters, words and sentences in a set of strings

2. C program to find the roots of a quadratic equation

3. Arithmetic calculator using C

4. C program to check whether a given number is palindrome

5. C program to check whether a number is Armstrong

6. C program to check whether a number is prime and to display Fibonacci series up to the given prime number

7. C program to add two matrices

8. C program to implement C preprocessor

0 comments:

Post a Comment

Home
Subscribe to: Posts (Atom)
  • About
  • Tags
  • Popular

Flickr Photos

Popular Posts

  • Java program to implement sliding window protocol
    Sender (slidsender.java) import java.net.*; import java.io.*; import java.rmi.*; public class slidsender { public static void main(String ...
  • Perl program to find the factorial of a number ("for" loop)
    print "Enter a number: "; $n=<STDIN>; $t=$n; $f=1; for($i=0;$i<$t;$i++) { $f=$f*$n; $n=$n-1; } print "Factorial is ...
  • Perl program to check whether a number is palindrome or not
    print"Enter a number: "; $n=<STDIN>; $t=$n; $s=0; while($n>0) { $r=$n%10; $s=($s*10)+$r; $n=int($n/10); } if($t==$s) { p...
  • Java program to implement remote method invocation (RMI)
    AddClient.java import java.rmi.*; import java.lang.*; import java.io.*; public class AddClient { public static void main(String args[]) { ...
  • Perl program to find sum of digits of a number
    print"Enter a number: "; $n=<STDIN>; $s=0; while($n>0) { $s=$s+($n%10); $n=$n/10; } print"Sum is $s\n";
  • Perl program to find the Fibonacci series for a given number of terms
    print "Enter the limit: "; $n=<STDIN>; $f1=0; $f2=1; print "Fibonacci series:\n"; if($n==1) { print "0\n...
  • Semester 3 Switching Theory & Logic Design module 1
    Download STLD notes (module 1). What is included? * Number systems. * Decimal and binary number systems. * Binary to decimal and de...
  • Semester 4 Microprocessor Systems Instructions
    Downloads notes on data transfer instructions, arithmetic instructions, logical instructions, branching instructions and machine control ...
  • Perl program to find the factorial of a number using recursion
    print "Enter a number: "; $n=<STDIN>; $t=$n; $i=0; $f=1; while($i<$t) { $f=$f*$n; $n--; $i++; } print "F...
  • Semester 6 Advanced Software Environments module 1
    CS010 606L06 Advanced Software Environments Module 1 Included topics: * Widows programming * Widows API * Distinction with ordinary ...
 

Follow us on G+

Follow us on FaceBook

Contact us

 
  • Be our Fan

    • Facebook
    • Twitter
    • You Tube
    • Google Plus
  • Search the Site

  • Blogroll

Copyright © Study CS Engg 2015. All rights reserved. Designed By Templateism | MyBloggerLab