What is the use of volatile?
No Answer is Posted For this Question
Be the First to Post Answer
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
What does struct node * mean?
What is nested structure in c?
Explain a pre-processor and its advantages.
Can you pass an entire structure to functions?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is the use of define in c?
while initialization of array why we use a[][2] why not a[2][]...?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
swapping of two numbers without using third variable using AND and OR operators
Is there sort function in c?
Can we change the value of static variable in c?