Skip to content

Commit c215dd1

Browse files
committed
Updated Binaries
1 parent 16ce9de commit c215dd1

22 files changed

+8
-7
lines changed
Binary file not shown.
Binary file not shown.

PowerSet/.vs/PowerSet/v17/.suo

3 KB
Binary file not shown.
-6.68 MB
Binary file not shown.
Binary file not shown.

PowerSet/PowerSet/PowerSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ void PowerSet(int set[], int n);
1414

1515
void main()
1616
{
17-
int set[] = {1, 2, 3, 4, 5 }; //Pre-defininh elements. Can be takes as input
17+
int set[] = {1, 2, 3, 4, 5}; //Pre-defininh elements. Can be takes as input
1818
int n = sizeof(set) / sizeof(set[0]); //Getting number of elements in array
1919
PowerSet(set, n); //Make subsets;
2020
}

PowerSet/PowerSet/x64/Debug/PowerSet.exe.recipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<ProjectOutputs>
44
<ProjectOutput>
5-
<FullPath>E:\GitHub\CPP_Random_Learning_Programs\PowerSet\x64\Debug\PowerSet.exe</FullPath>
5+
<FullPath>C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\x64\Debug\PowerSet.exe</FullPath>
66
</ProjectOutput>
77
</ProjectOutputs>
88
<ContentFiles />
-214 KB
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
 PowerSet.cpp
2-
E:\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\PowerSet.cpp(9,1): warning C4326: return type of 'main' should be 'int' instead of 'void'
3-
E:\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\PowerSet.cpp(17,17): warning C4244: 'initializing': conversion from 'double' to 'int', possible loss of data
4-
PowerSet.vcxproj -> E:\GitHub\CPP_Random_Learning_Programs\PowerSet\x64\Debug\PowerSet.exe
2+
C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\PowerSet.cpp(16,1): warning C4326: return type of 'main' should be 'int' instead of 'void'
3+
C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\PowerSet.cpp(24,17): warning C4244: 'initializing': conversion from 'double' to 'int', possible loss of data
4+
PowerSet.vcxproj -> C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\x64\Debug\PowerSet.exe
621 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\PowerSet.cpp;C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\PowerSet\x64\Debug\PowerSet.obj
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.22621.0:
2-
Debug|x64|E:\GitHub\CPP_Random_Learning_Programs\PowerSet\|
1+
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.36.32532:TargetPlatformVersion=10.0.22000.0:
2+
Debug|x64|C:\Users\jraja\Documents\GitHub\CPP_Random_Learning_Programs\PowerSet\|
Binary file not shown.
Binary file not shown.
Binary file not shown.

PowerSet/PowerSet/x64/Debug/vc143.idb

152 KB
Binary file not shown.

PowerSet/PowerSet/x64/Debug/vc143.pdb

48 KB
Binary file not shown.

PowerSet/x64/Debug/PowerSet.exe

-512 Bytes
Binary file not shown.

PowerSet/x64/Debug/PowerSet.pdb

240 KB
Binary file not shown.

0 commit comments

Comments
 (0)