Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.84 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.84 KB

C- kide

License: MIT

simple kadya (funny programms) in C

Description

  • all programms & codes are developed during M.Sc (Bioinformatics) for the paper, 'Programming in C' , Semester-II, Year-2010-2011.
  • all coding done on last corner Windows (Vista) desktop, near window, in practical Lab No.1 at Bioinformatics Center, University of Pune, Pune.

Code Details

  • haramiKaMall-ATM :- an interactiv ATM trasaction - funny.
  • alphNumericKashish :- an interactive program for printing Alphabets & Numbers on console.
  • aakashMeATGC :- stars in the sky. NOTE : may run on specific machines with specific configurations only.
  • Other :- all are some imaginary or realistic objects/shapes, printed using starts & some ASCII characters.

How To (locally)

  • for windows user,open file in Dev C++ / CodeBlocks, compile & Run.

  • for Linux user, comment below two line, like

     // #include<conio.h>
     // getch();

    compile & run as

     gcc -Wall helloWorld.c -o helloWorld
     ./helloWorld	
    • -Wall enables all compiler’s warning messages (recommended to generate better code)
    • -o to specify output file name. If we do not use this option, then an output file with name a.out is generated.

How To (with online compiler)