Explain the properties of union.
No Answer is Posted For this Question
Be the First to Post Answer
Why does not c have an exponentiation operator?
What is meant by operator precedence?
to get a line of text and count the number of vowels in it
how can i get this by using for loop? * ** * **** * ******
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
How to draw the flowchart for structure programs?
What is a null pointer in c?
Can you mix old-style and new-style function syntax?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is structure pointer in c?
What is undefined behavior?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;