Is reference used in C?
Answer / bavi
No.Oly cal by value method of passing is used in C.
Also, calling by reference can be achieved thru' Pointers.
| Is This Answer Correct ? | 7 Yes | 2 No |
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
main difference between c and c++ language
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What are the different properties of variable number of arguments?
difference between semaphores and mutex?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
write a progrmm in c language take user interface generate table using for loop?
Explain built-in function?
Why #include is used in c language?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,