Explain how can I prevent another program from modifying part of a file that I am modifying?
What is an anonymous union and where to apply that ?
Is printf a keyword?
Why is c still so popular?
What's the total generic pointer type?
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 the use of in c?
What does struct node * mean?
can u give me the good and very optimised code for a car racing game?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
What are the types of variables in c?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
How can I manipulate strings of multibyte characters?