I am very passionate to write about tips and some tutorial to guide you to learn programming. And what is the lesson 1? Can anyone write a Hello World program to me in any language?
Get link
Facebook
X
Pinterest
Email
Other Apps
Comments
Anonymous said…
#include (stdio.h) void main (){ printf("Hello world!"); }
ignore the open and close bracket for stdio.h..this post not allow me to put bracket
Sometimes we might want to identity the unique user for some purposes by knowing the machine identity they are using. Software licensing for instance, we could use his machine processor Id or motherboard id to uniquely identify them. So here are the tricks: using System.Management; //Get motherboard's serial number ManagementObjectCollection mbsList = null; ManagementObjectSearcher mbs = new ManagementObjectSearcher ("Select * From Win32_ BaseBoard "); mbsList = mbs .Get(); foreach ( ManagementObject mo in mbsList ) { textBox 1.Text = mo[" SerialNumber "]. ToString (); } //Get Processor's Identity ManagementObjectCollection mbsList = null; ManagementObjectSearcher mbs = new ManagementObjectSearcher ("Select * From Win32_processor"); mbsList = mbs .Get(); foreach ( ManagementObject mo in mbsList ) { textBox 1.Text = mo[" ProcessorID "]. ToString (); } Warning, although these are the methods to get the id, I feel that using t...
Today i went to Giant supermarket to buy somethings. Among the things that i bought are wine and shower shampoo. I found that both prices stated in my bill were incorrect. Lucky i did notice my bill didn't make sense. The bill says wine - RM34.99 ( but Giant says i should pay RM26.99), body shower shampoo - RM6.59 ( Giant says RM5.99). See what the lousy supermarket, this is the third time i experienced these problems and surprisingly again Giant supermarket. if i don't check i will lost total of RM8.50. I had went to the customer service to claim back my money and yet it took me total of 1 hour because of verification this and that. Imagine that those hot item which claims great deal but the billing prices are not the same in fact higher that it claims... definitely, we are the victim to be cheated. So, those of you must be careful to check your bill if you are buying things from Giant. Now i am going to change my mind to Tesco since it just near by Giant (luckily).... no mor...
Comments
void main (){
printf("Hello world!");
}
ignore the open and close bracket for stdio.h..this post not allow me to put bracket
Keng le me? hehehe