Click here to Skip to main content
15,886,840 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Parsing the Command Line Pin
Graham Breach27-Apr-20 4:34
Graham Breach27-Apr-20 4:34 
GeneralRe: Parsing the Command Line Pin
Richard Andrew x6427-Apr-20 5:13
professionalRichard Andrew x6427-Apr-20 5:13 
PraiseRe: Parsing the Command Line Pin
David Crow27-Apr-20 7:16
David Crow27-Apr-20 7:16 
QuestionHow to count occurences of a number and its most frequent pair in a text file? Pin
kangkongflea25-Apr-20 0:31
kangkongflea25-Apr-20 0:31 
AnswerRe: How to count occurences of a number and its most frequent pair in a text file? Pin
Richard MacCutchan25-Apr-20 0:38
mveRichard MacCutchan25-Apr-20 0:38 
AnswerRe: How to count occurences of a number and its most frequent pair in a text file? Pin
Stefan_Lang27-Apr-20 0:32
Stefan_Lang27-Apr-20 0:32 
SuggestionRe: How to count occurences of a number and its most frequent pair in a text file? Pin
David Crow27-Apr-20 2:08
David Crow27-Apr-20 2:08 
Questionarray of 32bit container Pin
Member 1481234224-Apr-20 6:28
Member 1481234224-Apr-20 6:28 
Good afternoon

I am new in c++. I am trying to write a code that uses an array of 2 exponent 32, A small example is the code below.


#include <iostream>
# include <stdio.h>
# include <fstream>
# include <string.h>
# include <iostream>
#include <math.h>  
# include <stdlib.h>  
#include <cstdio>
#include <cmath>
#include <cstring>
#include <limits>
#define two_power(n) (1u << (n))
using namespace std;  


typedef unsigned long  word32; 

int main()
{
	word32 delta, alfa;
	static word32 array[4294967295][4294967295] ={0};
	for (delta = 0; delta < 4294967296; delta++)
	{
		for (alfa = 0; alfa < 4294967296; alfa++)
		{
			array[delta][alfa] = alfa + delta;
		}
	}
	cout << array[4294967295][4294967295];
	return 0;
}



I there any method I can use to instead of using array because arrays have limitation in size. 2^32 = 4294967296. You can send me an email if you have an answer

kdmuthavhine@gmail.com

AnswerRe: array of 32bit container Pin
Richard MacCutchan24-Apr-20 6:56
mveRichard MacCutchan24-Apr-20 6:56 
AnswerRe: array of 32bit container Pin
jeron124-Apr-20 7:07
jeron124-Apr-20 7:07 
GeneralRe: array of 32bit container Pin
Richard Andrew x6424-Apr-20 13:09
professionalRichard Andrew x6424-Apr-20 13:09 
GeneralRe: array of 32bit container Pin
jeron124-Apr-20 14:27
jeron124-Apr-20 14:27 
GeneralRe: array of 32bit container Pin
Member 1481234224-Apr-20 20:48
Member 1481234224-Apr-20 20:48 
GeneralRe: array of 32bit container Pin
Victor Nijegorodov24-Apr-20 21:24
Victor Nijegorodov24-Apr-20 21:24 
GeneralRe: array of 32bit container Pin
Member 1481234224-Apr-20 20:52
Member 1481234224-Apr-20 20:52 
GeneralRe: array of 32bit container Pin
Member 1481234224-Apr-20 20:53
Member 1481234224-Apr-20 20:53 
GeneralRe: array of 32bit container Pin
Richard MacCutchan24-Apr-20 22:07
mveRichard MacCutchan24-Apr-20 22:07 
QuestionFile Explorer Properties Dialog - SOLVED Pin
Richard Andrew x6424-Apr-20 4:27
professionalRichard Andrew x6424-Apr-20 4:27 
QuestionOpenGL stencil not working... Pin
Vaclav_22-Apr-20 10:38
Vaclav_22-Apr-20 10:38 
AnswerRe: OpenGL stencil not working... Pin
leon de boer22-Apr-20 19:16
leon de boer22-Apr-20 19:16 
GeneralRe: OpenGL stencil not working... Pin
Vaclav_23-Apr-20 3:10
Vaclav_23-Apr-20 3:10 
GeneralRe: OpenGL stencil not working... Pin
Vaclav_23-Apr-20 8:11
Vaclav_23-Apr-20 8:11 
QuestionCross Reference/Reporting Tool avaiable which does not resolve macros? Pin
Hans99922-Apr-20 0:57
Hans99922-Apr-20 0:57 
AnswerRe: Cross Reference/Reporting Tool avaiable which does not resolve macros? Pin
Richard MacCutchan22-Apr-20 3:47
mveRichard MacCutchan22-Apr-20 3:47 
AnswerRe: Cross Reference/Reporting Tool avaiable which does not resolve macros? Pin
k505422-Apr-20 4:07
mvek505422-Apr-20 4:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.