What is 1f in c?
No Answer is Posted For this Question
Be the First to Post Answer
Want to know how to write a 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 total number of disk writes by MySQL.
Tell us something about keyword 'auto'.
no consistent academics. how to answer the question
What should not contain a header file?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
How do we make a global variable accessible across files? Explain the extern keyword?
What are the languages are portable and platform independent?Why they are like that?
Describe the modifier in c?
What is include directive in c?
Tell me the use of bit field in c language?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2