What do you mean by scope of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
write a program to display the array elements in reverse order in c language
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What is the difference between #include and #include 'file' ?
What is the difference between constant pointer and pointer to a constant. Give examples.
How variables are declared in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
how can we Declare a variable in c without defining it.