What is a header file?
No Answer is Posted For this Question
Be the First to Post Answer
what is software?
#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....?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
An array name contains base address of the array. Can we change the base address of the array?
how can i get output like this? 1 2 3 4 5 6
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
What are linker error?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
write a program to generate address labels using structures?
What is adt in c programming?