Integrated Environment : TURBO C/C++ - Getting Started Answers to Common Questions
Questions: Why is Turbo C++ not able to find any of my #include files? Answers: The compiler searches for include files in the Turbo C++ ...
Questions: Why is Turbo C++ not able to find any of my #include files? Answers: The compiler searches for include files in the Turbo C++ ...
This post is for beginners who are either trying to use Turbo C/C++ for programming. Some frequently encountered problem and theirs solu...
1. How will you change the value of a constant variable in C? Answer: Constant can be changed by using the pointer. Initialize a pointe...
1. What are the differences between Arrays and Linked List Answer:- Arrays and Linked list both are list data structures used for main...
1. What is the purpose of main() function? Answer:- main() is the user-defined function. main() is the first function in the program, wh...
Storage Classes in C-A storage class defines the scope (visibility) and life time of variables and/or functions within a C Program..Two ...
1. What is an Embedded Systems? Ans. An embedded system is a special purpose computer system which is completely encapsulated by device i...
Collection of most Frequently Asked Placement questions and Answers for Function and Pointer in C Programing in Practical viva in Engi...
Collection of most Frequently Asked Question for Array and Pointer in C Programing in Practical viva in Engineering or job interview to a...
1.Identify the token pasting operator? a)+ b)++ c)# d)## ANSWER: D 2.What is the value of CAR in the following Statement? enum ve...
1.What would be the output of the following program? main() { char *str[] = {“Frog”,”Do”,”Not”, “Die.”,”They”,”Croak!”}; printf(“%d %...
1.Which is the correct statement? a) Printf(“Maximum = %d\n”, (x.y) ? x : y); b) Printf( “%s\n”, (mark >= 60) ? “First class” : ...