Do you know what are the properties of union in c?
No Answer is Posted For this Question
Be the First to Post Answer
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
why we use "include" word before calling the header file. is there any special name for that include??????
Why do some versions of toupper act strangely if given an upper-case letter?
write a c program to store and print name,address,roll.no of a student using structures?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the maximum no. of arguments that can be given in a command line in C.?
Explain how do you override a defined macro?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
how to display 2-D array elements in spiral
How old is c programming language?
What are the features of the c language?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?