C Program Asked in TCS-1 06:17 by Let Us Code in C Asked in Placements, Asked in TCS 0 Program: #include<stdio.h> #include<conio.h> int main( ) { int a[10] = {1,2,3,4,5}; printf("%d %d %d",a[1],a[6],a[9]); return 0; } Output: 2 0 0 Share This: Fawitter Google+ Email ThisBlogThis!Share to XShare to Facebook Related Posts:C Programs asked in TCS Program: #include<stdio.h> #include<conio.h> int main( ) { &nb… Read MoreWhat are the different Storage Classes in C language Storage Classes: Stora… Read MoreC program to Print the following Output 1 2 3 4 5 6 7 7 7 8 9 10 Program: #include<stdio.h> #include<conio.h> void main( ) { … Read MoreC Program Asked in TCS-1 Program: #include<stdio.h> #include<conio.h> int main( ) { int… Read More
0 comments:
Post a Comment