What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
No Answer is Posted For this Question
Be the First to Post Answer
what is self refrential structure
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
implement NAND gate logic in C code without using any bitwise operatior.
What is a C array and illustrate the how is it different from a list.
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
what is unsigened char and what is the difference from char
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
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 total number of disk writes by MySQL
what is the use of macro program
What is the hardest programming language?
What are run-time errors?