Computer Architecture and Organisation ITS62704
📚 About this Post: This post includes useful resources for the Computer Architectur…
#include<stdio.h> void main () { int i; for (i = 0; i <= 41; i = i+4) { printf("%d\n", i); } }
Read more#include<stdio.h> void main () { int s; for(s=0; s<=1000; s++) { printf("your name \n"); } }
Read more#include <stdio.h> int main() { int year; printf("Enter a year: "); scanf("%d", &year); if (year % 4 =…
Read more#include<stdio.h> int main() { int num1 , num2, sum ,diff, product, divide; char arth; printf("Enter num 1 and num2"); scanf("%…
Read more#include <stdio.h> int main () { int purchase,member; printf("enter the purchase amount "); scanf("%d",&purcha…
Read moreThe Power of “C” Students: Why They Rule the World and “A” Students Work Under Them Are you tired of hearing the same old story about how getting g…
Read more
📚 About this Post: This post includes useful resources for the Computer Architectur…