Why do we use & in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is I ++ in c programming?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is the Difference between Class and Struct?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Without Computer networks, Computers will be half the use. Comment.
Explain what are the different file extensions involved when programming in c?
Explain how can you restore a redirected standard stream?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
write a program to print largest number of each row of a 2D array
Can anyone tell what is stack overflow? what precaution we should take?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What happens if you free a pointer twice?