can any one provide me the notes of data structure for
ignou cs-62 paper
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of data structures in c?
Explain the use of 'auto' keyword
How do c compilers work?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Taking an example,differentiate b/w loader and linker ?
What is an anonymous union and where to apply that ?
What is selection sort in c?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
Why is structure padding done in c?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is #error and use of it?