What are operators in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain Basic concepts of C language?
what is the differance between pass by reference and pass by value.
What are high level languages like C and FORTRAN also known as?
SRUCTURE PROGRAMMING
What is the acronym for ansi?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
What is %d called in c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Is null always equal to 0(zero)?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
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