4 questions
int x = 7;x = x++;What happens when there's a code like this?Does the variable increase after calculation and assign a value to itself? When I compiled it, x still has a value of 7. In my book, it say...
Example) member_tableno - auto increment,id - not null,pw - not null,email, phone, address $sql1= INSERT INTO member_table (no ,id, pw, email,phone,address) VALUES (NULL, '$id', '$pw', '$email', '$...
What is the difference between the potential increase (++i) and the posterior increase (i++) in C?Which of the two should I use when I go around the for door?
© 2024 OneMinuteCode. All rights reserved.