Explain the difference between call by value and call by reference in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in C to reverse a number by recursive function?
Write a program to check palindrome number in c programming?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
Can 'this' pointer by used in the constructor?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
How would you find a cycle in a linked list?
What is the general form of #line preprocessor?
what is a headerfile?and what will be a program without it explain nan example?
What is "Duff's Device"?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Which type of language is c?
Why c is called top down?