difference between spiral and waterfall model
Answer / kanika
waterfall model is used when the requirement of customer is
known
the waterfall model is a serial sequential model but spiral
model works in a loop
risk factor included in spiral model but not in waterfall
model
| Is This Answer Correct ? | 3 Yes | 0 No |
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
how to compare two strings without using strcmp() function??
What are the various types of control structures in programming?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
What is the use of the restrict keyword?
Explain pointer. What are function pointers in C?
What is difference between main and void main?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Is there sort function in c?
Write a program which returns the first non repetitive character in the string?
How is = symbol different from == symbol in c programming?