Explain the use of fflush() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is C language Terminator?
without using arithmatic operator convert an intger variable x into x+1
Find MAXIMUM of three distinct integers using a single C statement
Write a program that his output 1 12 123
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
what do u mean by Direct access files? then can u explain about Direct Access Files?
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
Write down the program to sort the array.
how does printf function work
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
what different between c and c++
Explain what is the advantage of a random access file?