a formula,a series of steps,or well defined set of rules for solving a problem

a) algorithem

b) program

c) erdiagram

d) compiler


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

Post New Answer

More C Interview Questions

design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.

2 Answers  


how write a addtion of two single dimensional array using of pointer in c language?

3 Answers   DRDO,


what do you mean by inline function in C?

0 Answers   IBS, TCS,


To what value do nonglobal variables default? 1) auto 2) register 3) static

4 Answers  


Can static variables be declared in a header file?

0 Answers  






what is the difference b/w compiler and debugger?

2 Answers   Assurgent,


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

0 Answers  


What is a substring in c?

0 Answers  


write a program to copy a string without using a string?

2 Answers  


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


What is difference between constant pointer and constant variable?

0 Answers   Hexaware,


What is else if ladder?

0 Answers  


Categories