Python Related (3312)
PHP Related (7341)
Scala (340)
R Programming (396)
Kotlin (184)
Apache Groovy (39)
Ruby (245)
Go Programming Language (139)
Objective-C (429)
Programming Languages AllOther (746) Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
5 10288char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 14530write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43223two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 9211C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
6 24119int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
10 17732
Can we use stl in coding interviews?
Explain setjmp()?
What do you mean by list comprehension in python?
Will this c++ program execute or not?
what is delegate and delegation model give the real live example on delegate model
What is difference between required and include in php?
Is wordpress database encrypted?
What is difference between static and constant in php?
How do I run a php program in dreamweaver?
Tell me how would you freeze an object in ruby? Can you provide a simple example?
Why c++ does not have finally?
Why do we use return in c?
Does flask work with python 3?
what is the similarity between networking devices?
How install react js in laravel?