Is c language still used?
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is a pointer and how it is initialized?
What is the explanation for modular programming?
Is c weakly typed?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
String concatenation
write a program to interchange the value between two variable without using loop
Explain can you assign a different address to an array tag?
Is c still used?