What is null character in c?
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
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What are the different types of errors?
write a program wch produces its own source code aas its output?
How to set a variable in the environment list?
When should you use a type cast?
I have a varargs function which accepts a float parameter?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
What are the applications of c language?
What does extern mean in a function declaration?
Are there namespaces in c?