how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
write a program to print %d ?
Explain the difference between malloc() and calloc() in c?
What does c mean before a date?
Can a file other than a .h file be included with #include?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is a void pointer in c?
What are the differences between Structures and Arrays?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
how to find the size of the data type like int,float without using the sizeof operator?
read a number & print all its devisors using c-program?
What are the different categories of functions in c?
Explain what are linked list?