int a=2,b=3,c=4;
printf("a=%d,b=%d\n",a,b,c);
what is the o/p?
Answer Posted / sanjay
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("\na=%d\n",a);
scanf("a=%d\n",a);
printf("a=%d\n",a);
printf("a=%d\n\n\n",&a);
//scanf("b=%d\n",&b);
//printf("a=%d\n",b);
//printf("a=%d\n",&a);
getch();
}
tell me the output why -12 and -28713 when i was enter 1 or
any digit?
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is string constants?
How to write a code for reverse of string without using string functions?
Explain the ternary tree?
What is modeling?
How many types of operator or there in c?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain how can I manipulate strings of multibyte characters?
How can a string be converted to a number?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
a program that can input number of records and can view it again the record
Explain bitwise shift operators?
What does it mean when the linker says that _end is undefined?
What is the difference between #include and #include 'file' ?
difference between object file and executable file