মেনু
QB Archive Quiz Creator Graph Poll Mode View Ques Quiz Leaderboard About
থিম নির্বাচন

আপনার পছন্দের থিম বেছে নিন।

Download Address Academy - Best Offline Education App

#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(b>max)

max=c;

printf("The largest number is %d", max);

getch(); }

উদ্দীপকের প্রোগ্রাম কোডটির প্রবাহচিত্র অঙ্কন কর।

A.
B.
C.
D.
Poster Download
তথ্য ও যোগাযোগ প্রযুক্তি(ICT)প্রোগ্রামিং ভাষা
Join Telegram
Explanation: