What is the difference between the local variable and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is wrong with this statement? Myname = ?robin?;
How do I access command-line arguments?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
how to create c progarm without void main()?
Write a code to generate divisors of an integer?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
What is function and its example?
What are the applications of c language?
program in c to print 1 to 100 without using loop
how to copy a string without using c function
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what is the difference between while and do while?