Explain what is the difference between #include and #include 'file' ?
Do you know what are bitwise shift operators in c programming?
write a program to print calender using for loop.
Explain how are 16- and 32-bit numbers stored?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
what is the coding of display the factorial of a number using array and function?
Why is it important to memset a variable, immediately after allocating memory to it ?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is c preprocessor mean?
What is the purpose of the statement: strcat (S2, S1)?
How can I delete a file?
What do header files do?