What is derived datatype in c?
Answer / Vaibhav Joshi
"Derived" data types in C are Array and Pointers. Arrays are a collection of elements of the same type, while pointers are variables that hold the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are volatile variables?
Can we change the value of static variable in c?
When a c file is executed there are many files that are automatically opened what are they files?
What is #ifdef ? What is its application?
what is the use of keyword volatile??
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is the scope of global variable in c?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
1 Answers Amdocs, Apps Associates,
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is static memory allocation?
What do you mean by keywords in c?