Answer Posted / dally
#include<stdio.h>
int main()
{
int a=9,b=4;
if(a>b)
{
while(a--)
b = b--;
}
else
printf("Difference is not possible\n") ;
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Is int a keyword in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is the right type to use for boolean values in c? Is there a standard type?
What are c identifiers?
Give the rules for variable declaration?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What does the error 'Null Pointer Assignment' mean and what causes this error?
How to write a code for reverse of string without using string functions?
pierrot's divisor program using c or c++ code
Explain what is meant by 'bit masking'?
Compare and contrast compilers from interpreters.
What are the types of type specifiers?
What are two dimensional arrays alternatively called as?
What does typeof return in c?