What is string concatenation in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are identifiers c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
How do you declare a variable that will hold string values?
What's the best way of making my program efficient?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
to get a line of text and count the number of vowels in it
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
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
Why is C called a middle-level language?
diff between exptected result and requirement?
Is c object oriented?
Is int a keyword in c?