Explain continue keyword in c
No Answer is Posted For this Question
Be the First to Post Answer
What is union and structure?
how to find binary of number?
wat are the two methods for swapping two numbers without using temp variable??
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Is it better to bitshift a value than to multiply by 2?
C,c++, Java is all are structural oriented or procedure oriented language..?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Where we use clrscr in c?
Explain what is the advantage of a random access file?
Is c procedural or functional?
What are c identifiers?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............