/*An Efficient code to print all the sum of all numbers that are multiples of 3 & 5 below N.*/ #include int main(){ int t; printf("Enter number of times you want to try"); scanf("%d",&t); while(t--) { unsigned long long N,p=0,sum=0; printf("Enter the value of N "); scanf("%lld",&N); //Take input of N from user for(int i=0;i