What is const and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a null string in c?
WHOT IS CHAR?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is a constant?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Explain what is wrong with this statement? Myname = ?robin?;
How can I pad a string to a known length?
How will you write a code for accessing the length of an array without assigning it to another variable?
how to find the kth smallest element in the given list of array elemnts.
What is "Duff's Device"?
what is the use of bitfields & where do we use them?
Is a pointer a kind of array?