What is function and its example?
No Answer is Posted For this Question
Be the First to Post Answer
What does 1f stand for?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is preprocessor with example?
What is the use of static variable in c?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
what is a function pointer and how all to declare ,define and implement it ???
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What would be an example of a structure analogous to structure c?
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,
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,