What is the role of && operator in a program code?
difference between spiral and waterfall model
How are 16- and 32-bit numbers stored?
Do pointers take up memory?
write a program to print %d ?
how can f be used for both float and double arguments in printf? Are not they different types?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is the difference between ++a and a++?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Two's compliment of -5
What is meant by operator precedence?
Can we access array using pointer in c language?
How can I read/write structures from/to data files?