What is indirection?
No Answer is Posted For this Question
Be the First to Post Answer
why we use pointer in c
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
How can I change their mode to binary?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What is the advantage of a random access file?
What is a structural principle?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
How do you determine whether to use a stream function or a low-level function?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Give differences between - new and malloc() , delete and free() ?