Hierarchy decides which operator
a) is most important
b) is used first
c) is fastest
d) operates on largest numbers
how to find sum of digits in C?
Is c pass by value or reference?
Can a variable be both constant and volatile?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
Why we use int main and void main?
How can I manipulate strings of multibyte characters?
What is %s and %d in c?
What are actual arguments?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
which of 'arrays' or 'pointers' are faster?