15.what is the disadvantage of using macros?
16.what is the self-referential structure?
17.can a union be self-referenced?
18.What is a pointer?
19.What is the Lvalue and Rvalue?
20.what is the difference between these initializations?
21.Char a[]=”string”;
22.Char *p=”literal”;
23.Does *p++ increment p, or what it points to?
Answer Posted / aravindakrishnan
for q 22 and 23;
*p++;
in post increment untill semicolon is encountered,
p points to 'l' only in the next line only
p points to 'i';
puts(*p++) gives the answer literal only
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
For what purpose null pointer used?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How can I pad a string to a known length?
write a program to rearrange the array such way that all even elements should come first and next come odd
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
write a progrmm in c language take user interface generate table using for loop?
How can you be sure that a program follows the ANSI C standard?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Can a variable be both const and volatile?
Calculate 1*2*3*____*n using recursive function??
What is dynamic memory allocation?
Was 2000 a leap year?
What is substring in c?
What are 3 types of structures?
What are identifiers and keywords in c?