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.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is a floating point in c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
What is the best way of making my program efficient?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is actual argument?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Can the “if” function be used in comparing strings?