Answer Posted / pressi
There are three types of errors in C
Compiler, Logical, Run-Time errors
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can static variables be declared in a header file?
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
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What are the advantages of using Unions?
Differentiate between calloc and malloc.
Explain the binary height balanced tree?
where are auto variables stored? What are the characteristics of an auto variable?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Can you write a programmer for FACTORIAL using recursion?
How do I read the arrow keys? What about function keys?
Are local variables initialized to zero by default in c?
What is the use of linkage in c language?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the purpose of sprintf() function?