What is function prototype in c language?
No Answer is Posted For this Question
Be the First to Post Answer
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
what is the use of keyword volatile??
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
wat is the difference between array and pointer?
What is static and volatile in c?
how can use subset in c program and give more example
What is memmove?
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.
Why does not use getgh(); and <conio.h> in c language.
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above