RGWC_2020

#include<stdio.h> viod main ( ){int s = 0, i = 1, n;printf("Enter the value of total number:"); scanf("%d", & n);while (i < n){ s = s + i;i + + ;}printf("The sum of the total number is %d/n", s);getch ( ); }ক. চলক বলতে কি বুঝ? খ. 0,1 দিয়ে লেখা ভাষা ব্যাখ্যা কর।গ. উদ্দীপকে আলোকে জোড়সংখ্যার যোগফল নির্ণয়ের কোড লেখ। ঘ. উদ্দীপকের প্রোগ্রামের গতিধারা সহজে বুঝানোর উপায় ব্যাখ্যা কর।

Loading answers...