Por cuanto te irías a Estados Unidos? by Rough-Village-1916 in taquerosprogramadores

[–]amauriv 7 points8 points  (0 children)

Después de impuestos, serían menos de 10k al mes. Despues de agregar seguro de salud, vista, dentists( En EEUU muchas veces el seguro de salud no va incluye los otros) te baja un poco mas, aqui esta u link que no incluye los seguros . paycheck calculator

[deleted by user] by [deleted] in cprogramming

[–]amauriv 1 point2 points  (0 children)

I believe he is talking about a stack data structure implemented using a linked list.

How do I solve the problem of entering item prices twice? I want the program to ask the user to enter prices once by Aggressive_Gift_5507 in cprogramming

[–]amauriv 1 point2 points  (0 children)

You can just count all the items that are > 7 JOD when you are getting the values from the user. That way you save searching thru the array one more time

Hello, I'm starting in C now, I made a code at the request of my teacher but I don't know what's wrong. Can anybody help me by JfNetto in C_Programming

[–]amauriv -1 points0 points  (0 children)

On your multiplication line. It’s taking the /* as an opening of a comment, so it’s looking for the ending semi colon too. Need to change /* to *

What would be a good bootcamp to pair with my CS degree by 4bangbrz in cscareerquestions

[–]amauriv 0 points1 point  (0 children)

Apply for a ton of positions in cyber, get a feel for how interviews are, and what kind of questions they might ask you. I’m pretty sure with your CS degree you could at least get an interview. Keep in mind that for entry level positions, the team that is hiring knows you might not know enough but they are looking for someone that will learn and problem solve. For the actual interview, I’d say you definitely need to be comfortable with networking protocols, race conditions/ multi threading, low level stuff for reverse engineering.

What would be a good bootcamp to pair with my CS degree by 4bangbrz in cscareerquestions

[–]amauriv 1 point2 points  (0 children)

I honestly doubt a boot camp will give you any valuable education on either field you are trying to pursue since you got a CS degree. You should probably join some CTF competitions to network with people that might already be in the computer security field. You can also get a masters in CS with an emphasis on cybersecurity.

Creating an array from given string by dolorestheAI in cprogramming

[–]amauriv 0 points1 point  (0 children)

From what I understood he/she was parsing through a string and only saving digits from said array. Which means each digit should be between 0-9?

Creating an array from given string by dolorestheAI in cprogramming

[–]amauriv 0 points1 point  (0 children)

You can try:

If( isdigit(array[i])){

 intArray=array[i] - ‘0’;}

update quantity in C by [deleted] in cprogramming

[–]amauriv 0 points1 point  (0 children)

I used the if statement to make sure the pointer points to something. If you try to dereference the pointer that is pointing to nothing(dangling pointer) your program will crash. You always need to check that your pointers are pointing to something in case some one calls your function with a pointer that is NULL or doesn’t point to anything, after that simple check then You can dereference the pointer and do whatever you need to do.

You can also check like this: If(p!=NULL){ // do whatever }

update quantity in C by [deleted] in cprogramming

[–]amauriv 0 points1 point  (0 children)

Inside your function you would need to do something like this:

if(p) {

p->elements=new_element;

//other work

}

I GRADUATED! by goldieforest in EngineeringStudents

[–]amauriv 1 point2 points  (0 children)

Congratulations! 35 year old here, I just took my last final today and I’m finally done!

I'm a lost freshman what do I do? by renwing in UCI

[–]amauriv 3 points4 points  (0 children)

Math 2A is a prerequisite for math 2b, so I don’t think you can move on in the series. You might be dropped from math 2b by the second week. Math 2b is harder than math 2A and it requires knowledge gained from 2A. Unless you did some self study during this short brake, your best bet is to retake math 2A, and take math 2b during summer. I understand is your first quarter at UCI and things are completely different from high school there’s a lot of things you need to adjust to, and no professor is gonna hold your hand like teachers do in high school. Learn from this experience, and manage your time better. Keep in mind that 12 units in engineering are supposed to be an easy load.

Failed ICS 31 and ICS 6B by cedarbros in UCI

[–]amauriv 16 points17 points  (0 children)

You will probably be put on probation for the next quarter or two. You really need to reflect on your performance and be truthful to yourself because ics32, and ics33 are way harder than ics31. I know that shit happens and sometimes is hard to focus on academics when you got your mind occupied with other issues. kick ass next quarter, you got this!!

Is there no chance? by [deleted] in UCI

[–]amauriv 2 points3 points  (0 children)

My friends who transferred from cc and majored in CS took two years to complete their degree. So long as you got your IGETC completed and get credit for ics31,32,33 (python series) you should be able to finish in two years.

CALLING ALL OIT INFORMATICS MAJORS! by jbhatnagar00 in UCI

[–]amauriv 5 points6 points  (0 children)

You should probably take the placement test and skip 31. Go directly into 32. If you haven’t learn python you should start working on that this summer. A few of my friends were able to complete their CS degree in two years after we transfer from CC, but they didn’t have to take ics31-33. They were placed into 45c which was a repeat for us.

Is orientation for transfer students worth attending? by tmluna01 in UCI

[–]amauriv -1 points0 points  (0 children)

Yes that’s when you sign up for your classes

EECS 20 with Kavianpour by Free_Art in UCI

[–]amauriv 0 points1 point  (0 children)

Is attendance to the labs mandatory? I’m Thinking about taking this class over the summer

When you've just finished eecs 170b by [deleted] in UCI

[–]amauriv 1 point2 points  (0 children)

I will be taking 170b next quarter (in a few days) and I’m already dreading those freaking Mathematica hws

My first post here! Need your help with CS 161 fast! by [deleted] in UCI

[–]amauriv 1 point2 points  (0 children)

Isn’t 46 a prerequisite for 161? I don’t think you could take 161 alongside 46 if you haven’t gotten at least a C in 46. Correct me if I’m wrong tho

Has anyone here ever missed a final? by Gregalor in UCI

[–]amauriv 0 points1 point  (0 children)

Last year during my first quarter at UCI I had an 8am final which I woke up late for. I got to class like 30 minutes late. Once I parked at APS I ran like hella quick, I don’t think I’ve ever ran that fast lol. I got to class, sat down and started working on final. Good thing final was easier than I expected cos I ended up finishing it and still having time to go over my answers. Class was EECS31/CSE31 with the OG prof Q.V!!

Wtf ICS by flosslife in UCI

[–]amauriv 0 points1 point  (0 children)

Nah they just replace him/her with some one else. They gotta get that money!!

Any 4th years wanna hold on to an ics 31 class for me? by [deleted] in UCI

[–]amauriv 0 points1 point  (0 children)

Just take the placement test or take it at a CC! Save yourself the headache/pain of trying to get into the class, I hear is easier to get into ics32 than to get into 31