Why isnt any of this standardized in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of sprintf() function?
whether itis a structured language?
Can main () be called recursively?
write a program to print infinte number
1,1,5,17,61,217,?,?.
difference between malloc and calloc
Write a c program to demonstrate Type casting in c?
What are examples of structures?
Explain what standard functions are available to manipulate strings?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
How can I trap or ignore keyboard interrupts like control-c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }