What is define directive?
No Answer is Posted For this Question
Be the First to Post Answer
which one is highest Priority in c? a)=,b)+,c)++,d)==
What are pointers? Why are they used?
Explain enumerated types in c language?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Which built-in library function can be used to match a patter from the string?
What does printf does?
Why is it that not all header files are declared in every C program?
write a program to add two numbers of any size.....(remember any size)
What is a good way to implement complex numbers in c?
What are categories used for in c?