Why is it that not all header files are declared in every C program?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between class and structure?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
what is the defrenece between structure and union
What are dangling pointers? How are dangling pointers different from memory leaks?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is the purpose of main() function?
Explain data types & how many data types supported by c?
How many bytes are occupied by near, far and huge pointers (dos)?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is volatile
What does c value mean?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789