|
INTERVIEW QUESTIONS
PROGRAMMING LANGUAGES
C
DETAILS
Question: What are the advantages of pointers,give me programs containing variables and pointer variables?
Answer: POINTER IS JUST LIKE A VARIABLE WHICH HOLDS THE ADDRES OF ANOTHER VARIABLE.POINTER IS DENOTED BY ASTERIK(*) SIGN.POINTER HAVE VERY IMPORTANT USE IN 'C' LANGUAGE. /*PROGRAM DEMONSTRATES THE CONCEPT OF POINTER */ #include <stdio .h> #include<conio.h> void main() { int a=10; int *m;//pointer type declaration clrscr(); printf("the value of a==%d",a); printf("the value of a==%d",*m); printf("the adres of a==%u",&a); printf("the adres of a==%u",m); getch(); } 'c' language has a very clever use. we can use pointer in many application.
|
|
|
Category |
C Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.2) By 9063 users |
Added on |
5/18/2013 |
Views |
70717 |
Rate it! |
|
|
Question:
What are the advantages of pointers,give me programs containing variables and pointer variables?
Answer:
POINTER IS JUST LIKE A VARIABLE WHICH HOLDS THE ADDRES OF ANOTHER VARIABLE.POINTER IS DENOTED BY ASTERIK(*) SIGN.POINTER HAVE VERY IMPORTANT USE IN 'C' LANGUAGE. /*PROGRAM DEMONSTRATES THE CONCEPT OF POINTER */ #include <stdio .h> #include<conio.h> void main() { int a=10; int *m;//pointer type declaration clrscr(); printf("the value of a==%d",a); printf("the value of a==%d",*m); printf("the adres of a==%u",&a); printf("the adres of a==%u",m); getch(); } 'c' language has a very clever use. we can use pointer in many application. Source: CoolInterview.com
Answered by: mukul garg | Date: 9/30/2009
| Contact mukul garg
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|
|
Related Questions |
View Answer |
|
I want source code of series of prime numbers.
|
View Answer
|
|
There is any methodology in which we can print a string in c without using semicolon(;) suggest me if there is ?
|
View Answer
|
|
What is the difference between the following statements? int a[4]={1,2,3,4}; int a[]={1,2,3,4);
|
View Answer
|
|
How can we get direct printout of a c file without giving print command from bin or tc?eg i want to get the printout of a program directly after execution from the c window itself.
|
View Answer
|
|
Write a C program that will convert Simple Sentence to Complex/Compound Sentence.
|
View Answer
|
|
Can anyone share his code which would accept a sentence, then count the number occurrence of the words excluding spaces.All is done using linked list.
|
View Answer
|
|
using c-strings write a program that will analyse the text"1.1my brother is taller than me.1.2 I am a boy of sixteen years old". The program should remove multiple spaces betweem words,find the longest word in the text,search and identify the number of letters"e", extact the number of integers , extract the number of doubles, extract the number of words in each sentence and identify the number of sentences in the text.
|
View Answer
|
|
Q.8 When a 'C' function call is made, the order in which parameters passed to the function are pushed into the stack is (a) left to right (b) right to left (c) bigger variables are moved first than the smaller variables. (d) smaller variables are moved first than the bigger ones (c) none of the above.
|
View Answer
|
|
void main() { float a= 0.7; if (a < 0.7) printf("c"); else printf("c++"); } Output of the above program is c. Why? Whereas the same program with 0.8 instead of 0.7 gives c++ as the output? Why explain?
|
else printf("c++") - C Interview Questions & Answers">
View Answer
|
|
What is difference between the test effort and the test procedure?
|
View Answer
|
|
How to write a program for pascal triangle?
|
View Answer
|
|
Write a program to remove comment lines and blank lines from an error free c program.
|
View Answer
|
Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.
View All C Interview Questions & Answers - Exam Mode /
Learning Mode
|