What would be the output of the following following Program? 08:20 by Let Us Code in C Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { int a[ ] = {1,2,3,4,5}; printf("%u,%u,%u",&a,a,&a[0]); } Options: A)65516,65518,65560 B)65516,65516,1 C)65516,1,1 D)65516,65516,65516 Answer Option... Read More Share This: Fawitter Google+
What is the Output of the following Program? 08:00 by Let Us Code in C Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { int x=10; int y=11; ... Read More Share This: Fawitter Google+
What would be the output of the following Program? 07:53 by Let Us Code in C Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { int i; i = 999; ... Read More Share This: Fawitter Google+
What is the output of the Following Program? 06:36 by Vignesh Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { int a[5] = {1,2}; printf("%d,%d,%d",a[1],a[2],a[3]); } Options: A)1,2,3 B)2,0,0 C)Garbage... Read More Share This: Fawitter Google+
C Program for the following Statement 09:51 by Vignesh Asked in Tech Mahindra, Placements Questions 0 Statement: Harish's basic salary is input through the keyboard. His dearness allowance... Read More Share This: Fawitter Google+
What is the output of the following Program? 06:37 by Vignesh Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { char far *p1, *p2; printf("%d,%d",sizeof(p1),sizeof(p2)); } Options: A)4,2 B)2,2 C)4,4 D)... Read More Share This: Fawitter Google+
What are the different Storage Classes in C language 23:56 by Vignesh Asked in TCS, Placements Questions 0 Storage Classes: Storage Classes specify the characteristic properties of the memory location where memory is allocated for... Read More Share This: Fawitter Google+
What is the Output of the following Program 22:39 by Vignesh Daily Questions 0 #include<stdio.h> #include<conio.h> void main( ) { int i=10; printf("%d,%i",i,i); } Options: A)... Read More Share This: Fawitter Google+
Introduction to C Language 22:17 by Vignesh C Language Tutorials 0 Introduction: A language represents set of symbols along with the rules to be followed while using... Read More Share This: Fawitter Google+