Pages
(Move to ...)
▼
Showing posts with label
C Language Programs
.
Show all posts
Showing posts with label
C Language Programs
.
Show all posts
Thursday, July 16, 2015
C Language Programs
›
C Language Programs 1.void main() { int const * p=5; printf("%d",++(*p)); } Answer: Compiler error: Cannot modify a const...
1 comment:
Monday, August 02, 2010
C LANGUAGE PROGRAMS
›
C LANGUAGE PROGRAMS 1. What is the output of the program given below #include main() { char i=0; for(;i>=0;i++) ; printf("%d\n...
Saturday, March 06, 2010
C language programs
›
1. main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); } Answer: 0...
2 comments:
›
Home
View web version