Is flag a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is printf () in c?
wat are the two methods for swapping two numbers without using temp variable??
What is static memory allocation? Explain
Explain how to reverse singly link list.
What is the most efficient way to store flag values?
If I have a char * variable pointing to the name of a function ..
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
How can you avoid including a header more than once?
What is the difference between malloc() and calloc() function in c language?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
What is the use of the sizeof operator?