where do we use structure pointer?
Answer / naveen shukla
we uses structure pointer when we have to point to the whole
object and we can access all the values of the data in the
object.
when we want to keep the reference of the structure variable
| Is This Answer Correct ? | 2 Yes | 0 No |
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
char *p="name"; printf(p);
What is infinite loop?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
In C, What is the #line used for?
What is a constant and types of constants in c?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
how to write a c program to print list of fruits in alpabetical order?
Why do we use int main?
What is wrong in this statement?
How can you find the day of the week given the date?