Why is c called a mid-level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
How are portions of a program disabled in demo versions?
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
difference between spiral and waterfall model
What is a double c?
Can you tell me how to check whether a linked list is circular?
Do variables need to be initialized?
What is #define in c?
What is the use of ?: Operator?
what r callback function?
Why does the call char scanf work?