What is a pointer value and address in c?
No Answer is Posted For this Question
Be the First to Post Answer
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
difference between loading and linking
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
can we access one file to one directory?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Difference between null pointer and dangling pointer?
Differentiate between ordinary variable and pointer in c.