Write a program that his output 1 12 123
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are the different file extensions involved when programming in c?
How can a program be made to print the line number where an error occurs?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
What are the 5 elements of structure?
What is #ifdef ? What is its application?
Program to find largest of three numbers without using comparsion operator?
How can I call a function, given its name as a string?
what is the difference between while and do while?
What is the difference between call by value and call by reference in c?
What is typedef?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?