int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answers were Sorted based on User's Feedback
Answer / sangam khera
depending upon the compiler ....
IN TURBO C++ -> it will give an error a,b,c assigned a valued that is never used."
IN GCC(DEV C++)->it will give garbage value....
| Is This Answer Correct ? | 2 Yes | 0 No |
What is const volatile variable in c?
how to write palindrome program?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
how to find the given number is prime or not?
What is the use of function in c?
How we can write a value to an address using macro..?
write function to reverse char array ... without using second array
How to implement variable argument functions ?
How do you write a program which produces its own source code as its output?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What are the types of type specifiers?