illustrate the use of address operator and dereferencing
operator with the help of a program
guys plzzz help for this question
No Answer is Posted For this Question
Be the First to Post Answer
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
What is strcpy() function?
Explain pointers in c programming?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What is a pointer and how it is initialized?
What is the most efficient way to count the number of bits which are set in an integer?
What are the ways to a null pointer can use in c programming language?
what is the difference between definition and declaration? give me some examples.
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
The __________ attribute is used to announce variables based on definitions of columns in a table?