18/03/2025
This is Production Test pls ignore
I have no idea to get some my researching documents for study when i were study. that make me create this page.
18/03/2025
This is Production Test pls ignore
18/03/2025
This is Production Test pls ignore
Google Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.
24/03/2022
Good night ☺️🥰
Hi all IT
Type this command in Command-Prompt you will see your laptop full License or not: wmic path softwarelicensingsevice get oa3xoriginalproductkey
10/03/2020
10/03/2020
What is full stack developer?
07/02/2020
Laravel - The PHP Framework For Web Artisans Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
int main()
{
//header
time_t t = time(NULL);
struct tm tm = *localtime(&t);
printf("\tSubject Name: C-Programming\n");
printf("\tStudent Name: TANN TAN\n");
printf("\tID: 45\n");
printf("\tDate:%d/%d/%d", tm.tm_mday,tm.tm_mon,tm.tm_year);
//endheader
int x;
char Code;
float a,b;
printf("\n\t\t===========================================\n");
printf("\n\t\t= WELCOME TO C PROGRAMMING LANGUAGE =\n");
printf("\n\t\t===========================================\n");
//Body
x=470;
Code='D';
a=3.58627;
int y = 250;
b=a;
char ch = 'k';
float S;
int sum;
printf(
"\n\tAssign Variable int X =%d,\n\tChar Code ='%c' \n\tfloat a = %f\n\tBut b=a \n\tS = a+b = %f\n\tSum = x+y = %d"
,x,Code,a,a+b,x+y
);
getchar();
return 0;
}