How can I manipulate individual bits?
No Answer is Posted For this Question
Be the First to Post Answer
how do we remove the printed character in printf statement and write next it it
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
Describe newline escape sequence with a sample program?
What is the heap in c?
What is d'n in c?
Do you know the purpose of 'register' keyword?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
How do I convert a string to all upper or lower case?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
How will you divide two numbers in a MACRO?