how does the for loop work actually..suppose for the
following program how it ll work plz explain to me
for(i=5;i>=0;i--)
prinf(i--);
Answer Posted / sadheesh kumar.s, vlbjcas,cova
the correct answer is
4
3
2
1
0
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
Can you tell me how to check whether a linked list is circular?
Can you please explain the difference between strcpy() and memcpy() function?
Why is c called a structured programming language?
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
Apart from dennis ritchie who the other person who contributed in design of c language.
What is a pointer on a pointer in c programming language?
Can i use “int” data type to store the value 32768? Why?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
How to delete a node from linked list w/o using collectons?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is a structure in c language. how to initialise a structure in c?
What is a stream?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
using only #include
Difference between malloc() and calloc() function?