What is use of integral promotions in c?
No Answer is Posted For this Question
Be the First to Post Answer
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Are local variables initialized to zero by default in c?
write a program to insert an element at the specified position in the given array in c language
can we store values and addresses in the same array? explain
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
biggest of two no's with out using if condition statement
Explain the concept of "dangling pointers" in C.
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
can we access one file to one directory?
What are the features of c languages?
Write a program using bitwise operators to invert even bits of a given number.