Write a C/C++ program that connects to a MySQL server and
displays the global TIMEZONE.
No Answer is Posted For this Question
Be the First to Post Answer
count the numbers between 100 and 300, that star with 2 and ends with 2
Differentiate between calloc and malloc.
What are dangling pointers?
What are the advantages of using macro in c language?
What is the difference between far and near in c?
main() { int a; a=++100; printf("%d",a); getch(); }
A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone
The __________ attribute is used to announce variables based on definitions of columns in a table?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
what is the maximum limit of row and column of a matrix in c programming. in linux .
Write a program to compute the following 1!+2!+...n!
How arrays can be passed to a user defined function