Download Pelles C here: http://www.pellesc.se
float __cdecl myfunc(float); // _myfuncorfloat __stdcall myfunc(float); // _myfunc@4Function sum Cdecl Alias "sum" (Byval x As Integer, Byval y As Integer) As Integer Export
Return(x+y)
End Function
Function subs Cdecl Alias "subs" (Byval x As Integer, Byval y As Integer) As Integer Export
Return(x-y)
End Function
#include <stdio.h>
extern int __cdecl sum(int x,int y);
extern int __cdecl subs(int x,int y);
int main(void)
{
printf("70 + 30 = %d\n",sum(70,30));
printf("70 - 30 = %d",subs(70,30));
return 0;
}
Processor Information (Type 4)
Type............................: 4
Length..........................: 48
Handle..........................: 4
Socket Designation..............: 1 => "U3E1"
Processor Type..................: 3 => 'Central Processor'
Processor Family................: 198 => 'Intel(R) Core(TM) i7 processor'
Processor Manufacturer..........: 2 => "Intel(R) Corporation"
Processor ID....................: 0xbfebfbff000b06a3
Processor Version...............: 3 => "13th Gen Intel(R) Core(TM) i7-1355U"
Voltage.........................: 0b10001010
External Clock..................: 100 MHz
Max Speed.......................: 5000 MHz
Current Speed...................: 4257 MHz
Status..........................: 0b1000001
Processor Upgrade...............: 65 => 'Socket BGA1744'
Best to direct the prodigious output to a text file for easy viewing. smbios.exe > HP_Bios.txtPage created in 0.044 seconds with 15 queries.