how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
What is use of integral promotions in c?
Can we compile a program without main() function?
How can I send mail from within a c program?
how can we Declare a variable in c without defining it.
What is table lookup in c?
How can a number be converted to a string?
what is the difference between global variable & static variable declared out side all the function in the file.
What's the difference between constant char *p and char * constant p?
When should the volatile modifier be used?
What is the difference between c &c++?
Can a local variable be volatile in c?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);