What is the use of header files?
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a low level language?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
What is data types?
how to add numbers without using arithmetic operators.
What is logical error?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Who is invented by c?
What is meant by high-order and low-order bytes?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Explain Linker and Loader
4. main() { int c=- -2; printf("c=%d",c); }