Why should I prototype a function?
Who invented bcpl language?
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
What does extern mean in a function declaration?
Differentiate between null and void pointers.
#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....?
What are linked lists in c?
what is the use of operator ^ in C ? and how it works?
Can you write the function prototype, definition and mention the other requirements.
could u able to tell about suresoft technical session
What is Heap?
What is the difference between %d and %*d in C