Explain what is a static function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I find out how much memory is available?
hi send me sample aptitude papers of cts?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
What is exit() function?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
how to return 1000 variables from functio9n in c?plz give me code also
Write a code to generate divisors of an integer?
What are high level languages like C and FORTRAN also known as?
What is a pointer on a pointer in c programming language?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?