Is anything faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
A C E G H +B D F A I ------------ E F G H D
Explain what are the standard predefined macros?
Where are c variables stored in memory?
Whether there can be main inside another main?If so how does it work?
What is enumerated data type in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
what is the use of macro program
What is meant by inheritance?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What are pragmas and what are they good for?
wat are the two methods for swapping two numbers without using temp variable??