What are categories used for in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any demerits of using pointer?
which is an algorithm for sorting in a growing Lexicographic order
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What extern c means?
Explain what is wrong with this program statement?
What is the use of linkage in c language?
What is quick sort in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
How can I find out if there are characters available for reading?
wats SIZE_T meant for?
What are loops c?