What is the need of structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is volatile variable in c with example?
What is the difference between array and pointer in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What does 3 periods mean in texting?
What is meant by 'bit masking'?
Explain the concept of "dangling pointers" in C.
where do we use volatile keyword?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is the use of typedef in c?
How can I find the modification date and time of a file?
What is the correct declaration of main?