Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
1 Commented Post
~2K People Reached
Favorite Forums
Favorite Tags
c x 5
c++ x 3
Member Avatar for priyankapandey

[QUOTE]Hi all... can anyone explain how i can read from a config file and retrieve its value in a cpp file... I am writing down the cfg file...[/QUOTE] [CODE]<APM> [APM_SAYHELLO] Formatter.Type = String Formatter.Val = AtlLogPlainTextFormatter Filter.Type = String Filter.Val = LEVEL_DDEBUG ComponentLevelFilter.Type = String ComponentLevelFilter.Val = true ComponentsEnabled.Type = …

Member Avatar for priyankapandey
0
286
Member Avatar for priyankapandey

can anyone explain how can a function return a double pointer with which a 2 dimensional array can be traversed, this function takes the number of rows and columns as arguments: like: void ** function(int row, int col) { void **returningPointer= NULL; void*p; for (i = 0; i < row; …

Member Avatar for Narue
0
1K
Member Avatar for priyankapandey

Hi all... can anyone explain how i can read from a config file and retrieve its value in a cpp file... I am writing down the cfg file... <APM> [APM_SAYHELLO] Formatter.Type = String Formatter.Val = AtlLogPlainTextFormatter Filter.Type = String Filter.Val = LEVEL_DDEBUG ComponentLevelFilter.Type = String ComponentLevelFilter.Val = true ComponentsEnabled.Type = …

Member Avatar for phoenix911
0
165
Member Avatar for priyankapandey

[CODE]#include<stdio.h> #include<conio.h> void** printA( int* , int ,int[][]); void printw(void*, int ,int); void main() { int num[3][5] = { {1, 2,3,4,5}, {6,7,8,9,10}, {11,12,13,14,15}, }; int* num_ptr[3]; void** ptr; printf("traversing by double pointer"); ptr=printA(*num_ptr,3, num); printw(* ptr, 3, 5); } void** printA(int* num_ptr[],int r,int num) { int i,j; for(i=0;i<r;i++) { *num_ptr[i]=num[i][0]; …

Member Avatar for priyankapandey
-3
70