What are pointers? Why are they used?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
Explain Basic concepts of C language?
Explain why can’t constant values be used to define an array’s initial size?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Explain what is meant by 'bit masking'?
which is the best antivirus and how to update it
What is diffrance between declaration and defination of a variable or function
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Explain what is the benefit of using an enum rather than a #define constant?
advantages of pointers?
How will you write a code for accessing the length of an array without assigning it to another variable?