c language supports bitwise operations, why
a) 'c' language is system oriented
b) 'c' language is problem oriented
c) 'c' language is middle level language
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
What is Your Name :)
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 the meaning of 2d in c?
What are the key features of C?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
What is your stream meaning?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
what is diffrence between string and character array?
int *a[5] refers to
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?