C

Friday, 29 September 2017

Program Showing Use of Constants.

#include<stdio.h>
#define PASS_MARKS 40
main()
{
         printf("Passing Marks is : %d", PASS_MARKS);
}



No comments:

Post a Comment

Write a program to draw a circle using mid-point circle drawing algorithm.

#include<iostream.h> #include<graphics.h> #include<conio.h> void drawcircle(int x0, int y0, int r) {         ...