What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answers were Sorted based on User's Feedback
Answer / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Differentiate Source Codes from Object Codes
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is the explanation for the dangling pointer in c?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
What is a null string in c?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Write a program to print factorial of given number using recursion?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
Is c procedural or functional?