I am so confused why the cout statement is not printing the contents of the array c_braces_array in the function find_depth;
All I am trying to do is pass an array and print its values.
#include <iostream>
int find_depth(char c_braces_array[], int no_of_braces)
{
for(int i=0; i<no_of_braces; i++)
{
std::cout<<"val is:"<<c_braces_array[i]<<"F\n";
}
return 0;
}
int main()
{
char braces[100] = {0};
int ret_val = find_depth(braces, 100);
std::cout<<ret_val;
system ("pause");
return 0;
}
O/P:
...
val is: F
val is: F
val is: F
val is: F
val is: F
0Press any key to continue . . .

Edit: I initialized the array to contain all 0s in the main. So I was expecting 0s to be printed. I am not sure where the O (as in Oh!) thing comes into context. Can someone explain a bit more on that?
I was expecting this o/p
val is:0 F
Edit - 2: Guys thanks. Thanks for pointing out the bug. Also I do not understand why the following line initializes only braces[0] with 'a' instead of the entire array. WHat is the correct way to init the entire array instead of running a for loop.
Now my code looks as below.
main(){
...
char a_char = 'a';
char braces[100] = {a_char};
}
find_depth(..)
{
...
std::cout<<"val is:"<<c_braces_array_ptr[i]<<"X\n";
}
O/P
Inside main: a
val is:aX
val is: X
val is: X
val is: X
val is: X
val is: X
val is: X
val is: X
0is a null terminator, used to end strings, as opposed to'0', which has the ASCII value48. You also shouldn't usesystem("pause"), as you have no guarantees what thepauseprogram on someone else's computer will do. – chris Jun 24 '12 at 20:23bracesarray to all 0's, it's printingno_of_bracesempty strings. – Jerry Coffin Jun 24 '12 at 20:26