a parameter passed between a calling program and a called program
a) variable
b) constant
c) argument
d) all of the above
What is nested structure in c?
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
How do I initialize a pointer to a function?
why arithmetic operation can’t be performed on a void pointer?
What is && in c programming?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What are the types of data types and explain?
what is the role you expect in software industry?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Why double pointer is used in c?
What are static variables in c?
What are the general description for loop statement and available loop types in c?