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 10418char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 14729write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43510two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 9360C 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 24292int 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 17979
What is the best way to comment out a section of code that contains comments?
What is encapsulation in c++ with example?
Why do we show php code in browser?
What are interfaces to go language?
What is isset and unset in php?
How to create a power function?
What is an auto keyword in c?
What is meant by 'bit masking'?
Tell me about important protocol being used in objective c?
What is the best way to avoid email sent through php getting into the spam folder?
Explain what is the common way for the flask script to work?
What is wrong with this declaration?
what is data abstraction in C++?
How will you print a list of all unique words from a string which may contain repeated words?
how to use C++?