saving . . . saved assignment queries has been deleted. assignment queries has been hidden .
assignment queries
Title
Question
where to run code and how to submit assignment ?

Advanced-Cpp Classes-And-Objects 05-06 min 0-10 sec 31-07-21, 1:39 p.m. vijeshribarapatre@gmail.com

Answers:

Dear User,
Please go through the Instruction Sheet thoroughly.  Please follow all the steps and then begin with the video.  Here is the link-
https://spoken-tutorial.org/media/videos/44/Advanced-Cpp-Instruction-Sheet-English.pdf

Assignments are only for self-assessment. You don't have to submit the assignments anywhere.
02-08-21, 11:50 a.m. hbammkanti


#include <stdio.h>
#define PI 3.14f 
void main() 
{
  float radius, perimeter, area;
printf("Enter radius of the Circle:\n");
scanf("%f", & radius);
perimeter = 2 * PI * radius;
printf("Perimeter of the circle: %0.4f\n", perimeter);
area = PI * radius * radius;
Printf("Area of circle: %0.4f\n", area);
}
09-10-22, 11:58 a.m. SRIMATTHIRUMALAKONDURU


Http://spoken tutorial.org/ media/video/44/advance CPP instructions sheet English.pdf
19-06-23, 12:08 p.m. FS22LT002


Log-in to answer to this question.