int j =15,i;
for (i=1; 1<5; ++i)
{printf ("%d%d
",j,i);
j = j-3;
}
Answer Posted / chelle
is j= 12?
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the process to create increment and decrement stamen in c?
What is d'n in c?
Who is the main contributor in designing the c language after dennis ritchie?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
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 are the types of functions in c?
What is difference between structure and union in c programming?
How does sizeof know array size?
What is s in c?
What functions are used for dynamic memory allocation in c language?
What is the use of ?
When a c file is executed there are many files that are automatically opened what are they files?
What are the advantages of c language?
Is swift based on c?
What is character constants?