What is call by value in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What does & mean in scanf?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
what is the use of keyword volatile??
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
What is difference between static and global variable in c?
Is fortran faster than c?
What is the difference between ‘g’ and “g” in C?
What does it mean when a pointer is used in an if statement?
which one low Priority in c? a)=,b)++,c)==,d)+