What is the explanation for prototype function in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to go with this?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
Give the rules for variable declaration?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Explain how can I convert a string to a number?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
What does nil mean in c?
What is double pointer?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Is it better to use a macro or a function?
what is the use of using linked list and array?
Is array a primitive data type in c?