Can the curly brackets { } be used to enclose a single line of code?
No Answer is Posted For this Question
Be the First to Post Answer
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
Find greatest of two numbers using macro
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is an lvalue and an rvalue?
Where local variables are stored in c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
difference between spiral and waterfall model
Can you please compare array with pointer?
what is the diffrenet bettwen HTTP and internet protocol
Write a c program using for loop in switch case?
What do you mean by scope of a variable in c?