Answer Posted / jyoti
header file is a preprocessor directive that contains all
the functions thet we have to use in our program and has to
be declared before the main function.
ex: headerfile <stdio.h> include functions such as printf()
and scanf() that puts the output and gets the input
repectively
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What do you mean by a sequential access file?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
explain what is fifo?
what is ur strangth & weekness
What are the disadvantages of external storage class?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is static memory allocation? Explain
What is the benefit of using an enum rather than a #define constant?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What is external variable in c?
What does the && operator do in a program code?
What is the difference between a free-standing and a hosted environment?
Describe the steps to insert data into a singly linked list.