Answers for "c++ compile to msi"

C++
0

c++ compile to msi

->> msiexec.exe
// https://docs.microsoft.com/fr-fr/windows-server/administration/windows-commands/msiexec
Posted by: Guest on April-29-2021
0

c++ compile to msi

int main()
{
    int a1[5]={1,2,3,4,5};
    int a2[3];
    int i=0;
    int n=3;
    for(;i<n;i++)
    {
        a2[i]=a1[i];
    }
}
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language