What is an auto variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of array float a(10)?
Differentiate fundamental data types and derived data types in C.
what is difference between declaring the pointer as int and char in c language?
When should the volatile modifier be used?
Define function pointers?
I heard that you have to include stdio.h before calling printf. Why?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
totally how much header files r in c language
how many errors in c explain deply
What is the use of a conditional inclusion statement in C?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?