What is difference between arrays and pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by recursion in c?
Tell me the use of bit field in c language?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Explain what are binary trees?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
write a program to swap two variables a=5 , b= 10 without using third variable
Are there any problems with performing mathematical operations on different variable types?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Who developed c language?
What is register variable in c language?