ChB_2016
# include <stdio.h>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...