What are the advantages of the functions?
No Answer is Posted For this Question
Be the First to Post Answer
What's the total generic pointer type?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Is Exception handling possible in c language?
Why does the call char scanf work?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
How can a process change an environment variable in its caller?
What is the difference between void main() and int main()?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
how to find the largest element of array without using relational operater?
what is the difference b/w compiler and debugger?
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5