Differentiate between Macro and ordinary definition.
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I make sure that my program is the only one accessing a file?
How do I declare a pointer to an array?
? ???Mirror Mirror on the wall????????
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
what is c
When can you use a pointer with a function?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
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?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
Find MAXIMUM of three distinct integers using a single C statement
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above