Where are the auto variables stored?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language to print your bio-data on the screen by using functions.
Which function in C can be used to append a string to another string?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
Explain pointer. What are function pointers in C?
How can you avoid including a header more than once?
Where can I get an ansi-compatible lint?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
explain what is a newline escape sequence?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)