Explain the properties of union.
No Answer is Posted For this Question
Be the First to Post Answer
What is echo in c programming?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Software Interview Questions
What's wrong with "char *p = malloc(10);" ?
read a number & print all its devisors using c-program?
what is difference between declaring the pointer as int and char in c language?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What is the size of array float a(10)?
Why C language is a procedural language?
What is the difference between %d and %i?
what do you mean by defining a variable in our c code?