Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between constant pointer and constant variable?
Why c is called procedure oriented language?
explain what are actual arguments?
What type of function is main ()?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
What is the difference between #include <header file> and #include “header file”?
How pointer is benefit for design a data structure algorithm?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
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.
Explain the use of 'auto' keyword
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)