Why should I prototype a function?


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

Post New Answer

More C Interview Questions

Who invented bcpl language?

0 Answers  


write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview

2 Answers   Satyam, UNIS, Wipro,


atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation

0 Answers  


What does extern mean in a function declaration?

4 Answers  


Differentiate between null and void pointers.

0 Answers   TCS,


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


What are linked lists in c?

0 Answers  


what is the use of operator ^ in C ? and how it works?

2 Answers  


Can you write the function prototype, definition and mention the other requirements.

0 Answers   Adobe,


could u able to tell about suresoft technical session

1 Answers  


What is Heap?

3 Answers  


What is the difference between %d and %*d in C

3 Answers  


Categories