What is the right type to use for boolean values in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are its uses in c programming?
What's wrong with "char *p = malloc(10);" ?
What is masking?
What is the difference b/w Structure & Class?
What is a pointer and how it is initialized?
How would you write qsort?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Is linux written in c?
Explain the difference between structs and unions in c?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
what are the advantages & disadvantages of unions?