What do you mean by a local block?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Find greatest of two numbers using macro
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are extern variables in c?
How to throw some light on the b tree?
is it possible to create your own header files?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Explain pointer. What are function pointers in C?
How does free() know explain how much memory to release?
WHOT IS CHAR?
Explain void pointer?
Explain command-line arguments in C.