What are register variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the preprocessors?
find largest of 3 no
What does #pragma once mean?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is c mainly used for?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
please explain every phase in the "SDLC" in the dotnet.
What is difference between %d and %i in c?
Give a method to count the number of ones in a 32 bit number?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Why ordinary variable store only one value