Jump to content

PandaCruncher

Member
  • Posts

    60
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Gender
    Not Telling

System

  • CPU
    R9 3900x
  • RAM
    32gb 3600mgh
  • GPU
    GeForce GTX 1080ti
  • Case
    Inwin A1 plus

Recent Profile Visitors

686 profile views
  1. I bring it with me everywhere, bring it to my dads where he doesn't have a pc nor do i have a laptop and its for movies and show.
  2. I've been using a 1tb wd blue nvme in an enclosure for a while now, mostly use it for movies and shows. It works in PCs, TVs and on my phone. But a couple days ago i upgraded to a 2tb xpg 8100 for storage, This drive works fine on my pc,only works when plugged into the motherboard usb connectors on a work pc, and will not work on either my phone (galaxy A71) or tv. All partitions are in exFat, I've tried it in both a ORICO TCM2-C3 and a ASUS ROG STRIX Arion neither worked. Wondering if i have a faulty drive, too cheap of a drive or if a phone or tv simply cannot power a 2tb m.2 ssd. Seems to me like its a power issue. Should i try another drive, Intel 660p 2tb mabe? Thanks for the help.
  3. its a first year university programming coarse
  4. yup that will do it thanks man!
  5. @Pinguinsan Im using Dev C++ on windows 10. the program is meant to be c, and is to use the equations bellow
  6. the program stops working as soon as you click run
  7. This is an assignment question, and is most likely a problem with pointers. imput file is : 1 2 -1 3 -2 #include<stdio.h> #include<math.h> #define N 100 void distance(float* x, int q, float* ra, float* rb); int main(void){ FILE* fout = fopen("lengthout.txt" , "w"); FILE* fin = fopen("lengthin.txt", "r"); float x[N], ra, rb; int q=0; while(fscanf(fin, "%d\n", x[q]) !=EOF){ q++; } distance(x, q, &ra, &rb); fprintf(fout, "The array has %d entries. The norms are: \n" , q); fprintf(fout, "1-norm = %f \n", ra); fprintf(fout, "2-norm = %f \n", rb); fclose(fout); fclose(fin); return 0; } void distance(float* x, int q, float* ra, float* rb){ float pra=0, prb=0; int t; for(t=0;t<q;t++){ pra = pra + fabs(x[t]); } *ra = pra; for(t=0;t<q;t++){ prb = prb + pow(x[t], 2); } *rb = sqrt(prb); }
  8. do you happen to have oc genie enabled in the bios?
  9. ive been having some troubles getting my PC to boot correctly, ive decided to reinstall windows but all i have is a mac to create the bootable usb,and sadly its not my mac and the owner lost its password, ive tried the boot camp assistant and going through he terminal but both options require a password... any other options?
  10. It's been running for an hour with no errors so seems good
  11. How would I run this if windows won't start?
  12. @Runefox @Dutch-stoner @gtx1060=value The ram seems to be working today however windows won't boot properly, last night it would sign me into a temporary profile, and today windows won't even boot?? safe to assume windows is corrupted?
×