where are auto variables stored? What are the characteristics of an auto variable?
No Answer is Posted For this Question
Be the First to Post Answer
How to get string length of given string in c?
What is variable and explain rules to declare variable in c?
Why does not c have an exponentiation operator?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
what are enumerations in C
how to make a scientific calculater ?
What is a lvalue
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
What is the difference between static and global variables?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV