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
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
What is dynamic dispatch in c++?
What is c basic?
What is the use of #include in c?
Do you know what is a programing language ?
Is stack a keyword in c?
How do we open a binary file in Read/Write mode in C?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,