ACPSCD_2020

#include<stdio.h>#include<conio.h>main (){int a, b, c, max;printf("Enter the value of a, b, c:");scanf("%d %d %d",&a,&b,&c);max = a;if(b>max)max-b; if(c>max)max cprintf("The largest number is %d", max);getch ( ); }ক. Syntax Error কী?খ. কম্পাইলার ও ইন্টারপ্রেটারের মধ্যে পার্থক্য লিখ । গ. উদ্দীপকের প্রোগ্রাম কোডটির প্রবাহচিত্র অঙ্কন কর।ঘ. উদ্দীপকের প্রোগ্রামটি if-else স্টেটমেন্ট ব্যবহার করে বাস্তবায়ন সম্ভব কি-না? – কোডসহ ব্যাখ্যা কর।

Loading answers...