What is true about the following
C Functions
a.Need not return any value
b.Should always return an integer
c.Should always return a float
d.Should always return more than one value.
Answer
Is This Answer Correct ? | 8 Yes | 0 No |
Which of the following about automatic variables within a
function is correct ?
a.its type must be declared before using the variable
b.they are local
c.they are not initialised to zero
d.they are global.
Answer
Is This Answer Correct ? | 1 Yes | 5 No |
# define prod(a,b)=a*b
main()
{
int x=2;
int y=3;
printf("%d",prod(x+2,y-10)); }
the output of the program is
a.8
b.6
c.7
d.none
Answer
Is This Answer Correct ? | 8 Yes | 0 No |
which of the following statements is incorrect
a.typedef struct new{
int n1;
char n2;
} DATA;
b.typedef struct {
int n3;
char *n4;
}ICE;
c.typedef union {
int n5;
float n6;
} UDT;
d.#typedef union {
int n7;
float n8;
} TUDAT;
Answer
Is This Answer Correct ? | 2 Yes | 6 No |
main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
what is the output?
Answer
Is This Answer Correct ? | 1 Yes | 12 No |
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer
Is This Answer Correct ? | 11 Yes | 11 No |
Question { 3224 }
Suppose I want to write a function that takes a generic
pointer as an argument and I want to simulate passing it by
reference. Can I give the formal parameter type void **, and
do something like this?
void f(void **);
double *dp;
f((void **)&dp);
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
what is the difference between arrays and linked list
Answer
Is This Answer Correct ? | 137 Yes | 21 No |
Question { 8035 }
How can I return multiple values from a function?
Answer
Is This Answer Correct ? | 2 Yes | 1 No |
how to check whether a linked list is circular.
Answer
Is This Answer Correct ? | 30 Yes | 30 No |
Question { Tata Elxsi, 49451 }
print a semicolon using Cprogram without using a semicolon
any where in the C code in ur program!!
Answer
Is This Answer Correct ? | 11 Yes | 2 No |