main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answers were Sorted based on User's Feedback
Answer / baji shareef
error. Increment procedure is possible only for the variable. ++100 means 100=100+1 i.e., you are changing the value of constant value which is impossible.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / khurshid alam
Sorry Error first define a=0; or any value
| Is This Answer Correct ? | 0 Yes | 0 No |
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Can you think of a way when a program crashed before reaching main? If yes how?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is the real time usage volatile?
Is fortran faster than c?
where do we use volatile keyword?
What is uint8 in c?
Dear Sir, we are required the bubble sorting programs Regs Prem
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Tell me about low level programming languages.
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.