Tag: c
Questions Related to c
To declare and initialize character array :
What is the output of the following piece of code?
int x = 3, y = 5, z ; z = x++ + ++y; printf(ā%dā,z);
What is the role of variables in programming languages:
what is the output of the following program
main(){ int x; printf(ā%dā,x); }
The variables in C programming language:
consider the following statement:
while ( 3 ) ;
- ← Previous
- 1
- 2
- Next →