Should a function contain a return statement if it does not return a value?
No Answer is Posted For this Question
Be the First to Post Answer
What's a good way to check for "close enough" floating-point equality?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
why you will give me a job in TCS.
Explain what are reserved words?
Explain what are multidimensional arrays?
What's a "sequence point"?
write a program to find lcm and hcf of two numbers??
1. Write a program to reverse every second word in a given sentence.
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
In a switch statement, what will happen if a break statement is omitted?
write a program for even numbers?