What is sizeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
When is the “void” keyword used in a function?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
What is the hardest programming language?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
State the difference between x3 and x[3].
What is Function Pointer? Explain with example?
What compilation do?
7 Answers Geometric Software, Infosys,
What is difference between array and structure in c?
which of 'arrays' or 'pointers' are faster?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
How will you delete a node in DLL?