What is an lvalue in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference function call by value & function call by reference?
Differentiate between the expression “++a” and “a++”?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
how to swap 2 numbers in a single statement?
What are external variables in c?
Can we compile a program without main() function?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
say the following declaration is correct nr not. int b=a,n=0;
what is an inline function?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }