What is use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right way to use errno?
What is volatile
out put of printf(ā%dā,printf(ram));
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is meaning of tree
Give the rules for variable declaration?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
How was c created?
Explain command-line arguments in C.
The C language terminator is a.semicolon b.colon c.period d.exclamation mark