what is level of tree if leaf node is at level 4.please
explain.
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Difference between C and Embedded C?
Which type of language is c?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
While(1) { } when this loop get terminate is it a infinite loop?
What do you mean by Recursion Function?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
What is the use of header?
What are the 4 types of organizational structures?
What is the purpose of ftell?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is