Disadvantages of C language.
What is a constant?
What are local variables c?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
In c language can we compile a program without main() function?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the different types of C instructions?
Who developed c language and when?
What Is The Difference Between Null And Void Pointer?
What is the use of gets and puts?
What is the use of #define preprocessor in c?
What's the difference between constant char *p and char * constant p?
Can a file other than a .h file be included with #include?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Difference between malloc() and calloc() function?