What is the use of a static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that will print %d in the output screen??
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
write a program to generate 1st n fibonacci prime number
What is the difference between typeof(foo) and myFoo.GetType()?
in linking some of os executables are linking name some of them
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
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
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What is the function of volatile in c language?
What is an auto variable in c?
diff. between *p and **p
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack