Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ inOrder
Function
inOrder
Trees/binarytreetraversal.c:51–58 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
49
50
51
void inOrder(struct tnode *node) {
52
if (node) {
53
inOrder(node->left);
54
printf(
"%d "
, node->data);
55
inOrder(node->right);
56
}
57
return;
58
}
59
60
int main() {
61
int data, ch;
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected