What is adt in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What are dangling pointers? How are dangling pointers different from memory leaks?
What is the role of && operator in a program code?
which one is highest Priority in c? a)=,b)+,c)++,d)==
Why is c platform dependent?
What are header files and explain what are its uses in c programming?
how to find anagram without using string functions using only loops in c programming
Why clrscr is used after variable declaration?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
In a header file whether functions are declared or defined?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
can a union be self-referenced?
What is the use of define in c?