Why clrscr is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
what does static variable mean?
Can we access array using pointer in c language?
What is enumerated data type in c?
Write a program to swap two numbers without using the third variable?
What is array in c with example?
What is extern keyword in c?
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?
Can we write a program without main() function?
which one low Priority in c? a)=,b)++,c)==,d)+
Explain high-order bytes.
Why malloc is faster than calloc?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);