What is a pointer?
Answer / gsrinivas
pointer is variable which stores the address of the memory
location
| Is This Answer Correct ? | 26 Yes | 2 No |
how can write all 1to 100 prime numbers using for loop,if and break ?
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
what is data structure.in linear and non linear data structures which one is better?Explain
What does extern mean in a function declaration?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
what is meant by flushll() in c programming?
to get a line of text and count the number of vowels in it
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
2. What does static variable mean?
Explain is it valid to address one element beyond the end of an array?
a simple c program using 'for' loop to display the output 5 4 3 2 1
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300