? ???Mirror Mirror on the wall????????
Should I learn data structures in c or python?
what is the difference between structure and union?
Explain the bubble sort algorithm.
Explain how do you search data in a data file using random access method?
What is typeof in c?
What is a buffer in c?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What is the use of volatile?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
Explain continue keyword in c
What is the use of the sizeof operator?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }