What is the use of f in c?
No Answer is Posted For this Question
Be the First to Post Answer
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is difference between && and & in c?
Can we assign string to char pointer?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What is identifiers in c with examples?
Do you know what is the purpose of 'extern' keyword in a function declaration?
What are the uses of a pointer?
What is the explanation for modular programming?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What is data structure in c programming?
write a programming in c to find the sum of all elements in an array through function.
what is the use of call back function in c?tell me with example