Write a program to reverse a given number in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to remove duplicate from an ordered char array? in c
related proverb of "dont count your chicken before it hatches"
write a program to rearrange the array such way that all even elements should come first and next come odd
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What are different storage class specifiers in c?
What is an operator?
Difference between Function to pointer and pointer to function
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is switch in c?
Can you write a programmer for FACTORIAL using recursion?
Can you think of a way when a program crashed before reaching main? If yes how?
code for bubble sort?