Where is volatile variable stored?
Is main is a keyword in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
what are # pragma staments?
What is New modifiers?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Why C language is a procedural language?
What is the description for syntax errors?
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.
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
How to define structures? ·
What are local static variables?