Famous puzzles which are generally asked by companies during
interviews ?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
How many header files are in c?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
What is stack in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Explain how do you determine a file’s attributes?
difference between ordinary variable and pointer in C?
Are pointers really faster than arrays?