Can I pass constant values to functions which accept structure
arguments?
Answers were Sorted based on User's Feedback
Answer / guest
No. C has no way of generating anonymous structure values.
| Is This Answer Correct ? | 2 Yes | 1 No |
What is pointers in c with example?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is the size of structure pointer in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is the difference between ‘g’ and “g” in C?
Why clrscr is used in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
WHAT IS FLOAT?
What is the general form of a C program?
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]
What are the parts of c program?