what is the height of tree if leaf node is at level 3. please
explain
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the role of this pointer?
What is a pointer in c?
What is the most efficient way to count the number of bits which are set in a value?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is #line?
What is c token?
What is dynamic memory allocation?
Explain how do you search data in a data file using random access method?
Which is best book for data structures in c?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.