Why is c called a mid-level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
I need previous papers of CSC.......plz help out by posting them.......
Explain data types & how many data types supported by c?
how to find the kth smallest element in the given list of array elemnts.
write a proram to reverse the string using switch case?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Explain what is wrong with this statement? Myname = ?robin?;
Which is the best sort method for library management?
Why c is faster than c++?
What is volatile variable how do you declare it?