How variables are declared in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the default value of local and global variables in c?
What is pointers in c with example?
What are the benefits of c language?
What are register variables? What are the advantage of using register variables?
Where is c used?
char ch=10;printf("%d",ch);what is the output
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
Does c have class?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Are the variables argc and argv are local to main?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }