Why isnt any of this standardized in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

without using arithmatic operator convert an intger variable x into x+1

3 Answers  


Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********

4 Answers  


What is exit() function?

0 Answers  


 Illustrate it   summing the series 2+4+6+......to n terms using  (i) while loop (ii) do-while loop

2 Answers  






What are the keywords in c?

0 Answers  


What are run-time errors?

0 Answers  


program to print upper & lower triangle of a matrix

2 Answers   TCS,


what is a function prototype?

1 Answers  


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

0 Answers   Wipro,


What is the deal on sprintf_s return value?

0 Answers  


What are structures and unions? State differencves between them.

0 Answers   iNautix,


Categories