Which is best book for data structures in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between overriding and overloading?
What is difference between structure and union in c programming?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
WHAT IS LOW LEVEL LANGUAGE?
how to swap two integers 1 and 32767 without using third variable
How do I copy files?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
Eight queens puzzle
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What should malloc() do?
why we are using semicolon at the end of printh statment