Explain the array representation of a binary tree in C.
No Answer is Posted For this Question
Be the First to Post Answer
What is volatile
why we shiuld use main keyword in C
What is difference between function overloading and operator overloading?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
What is the difference between single charater constant and string constant?
What is the scope of global variable in c?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What are c identifiers?
What is storage class?
Explain void pointer?
sum of two integers values only other then integer it should print invalid input.
How can I convert a number to a string?