What are header files in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is the benefit of using an enum rather than a #define constant?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Define the scope of static variables.
Explain what are the standard predefined macros?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Can a pointer be null?
What's the right way to use errno?
write a c program for greatest of three numbers without using if statment
How would you sort a linked list?