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 |
where does it flourished?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Write a factorial program using C.
what is the use of using linked list and array?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is the use of bitwise operator?
What is meant by int main ()?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Write a program to swap two numbers without using the third variable?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What are the properties of union in c?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not