What is the difference between test design and test case
design?
No Answer is Posted For this Question
Be the First to Post Answer
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
Explain Doubly Linked Lists?
What are the salient features of c languages?
How will you delete a node in DLL?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
write a progrmm in c language take user interface generate table using for loop?
What is null pointer in c?
What are valid operations on pointers?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
Write a program of prime number using recursion.