Is it possible to pass an entire structure to functions?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
How does the C program handle segmentation faults?
what is the maximum limit of row and column of a matrix in c programming. in linux .
How variables are declared in c?
What is the advantage of a random access file?
How would you find a cycle in a linked list?
Differentiate fundamental data types and derived data types in C.
64/square(4)
What is variable declaration and definition in c?
Explain what are reserved words?
Explain what does it mean when a pointer is used in an if statement?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT