please explain every phase in the "SDLC" in the dotnet.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"

4 Answers  


main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

4 Answers   Vector, Wipro, Zoho,


What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }

1 Answers  


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


When should we use pointers in a c program?

0 Answers  






why java is called as a purely oops language.

3 Answers   TVS,


Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??

4 Answers  


How will you declare an array of three function pointers where each function receives two ints and returns a float?

0 Answers   TISL,


Is register a keyword in c?

0 Answers  


pierrot's divisor program using c or c++ code

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


what are two kinds of java

2 Answers  


Categories