What does
do in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do I declare a pointer to an array?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is a null string in c?
using for loop sum 2 number of any 4 digit number in c language
What is a structure and why it is used?
Explain what is the most efficient way to store flag values?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
Explain what are multibyte characters?
What is linear search?
Is there any book to know about Basics of C Language?
Explain what are compound statements?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);