Is there any demerits of using pointer?
No Answer is Posted For this Question
Be the First to Post Answer
i want to know the procedure of qualcomm for getting a job through offcampus
Explain how do you list files in a directory?
how many argument we can pas in in a function
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
What is the correct code to have following output in c using nested for loop?
What are the preprocessors?
Is c still relevant?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
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.
the data type used for unlimited value in c and how to do this program
Can you please explain the difference between malloc() and calloc() function?