What is the scope of static variables?
write a c/c++ programthat 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.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How many levels deep can include files be nested?
What is the best way of making my program efficient?
can we define a function in structure?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
what is c?
wats SIZE_T meant for?
What functions are used in dynamic memory allocation in c?
Why do we write return 0 in c?
What is the difference between %d and %*d in C
What is the difference between a function and a method in c?