What is the scope of local variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are header files? What are their uses?
write a c program to find biggest of 3 number without relational operator?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Explain how can you restore a redirected standard stream?
What is the difference between new and malloc functions?
how to sort two array of characters and make a new array of characters.
can we declare a variable in different scopes with different data types? answer in detail
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
What is the difference between i++ and i+1 ?(in terms of memory)
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What is the difference between single charater constant and string constant?
Which weighs more, a gram of feathers or a gram of gold?