What is local and global variable in c?
Explain how do you determine the length of a string value that was stored in a variable?
How do you define a function?
Why do some versions of toupper act strangely if given an upper-case letter?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
How can I avoid the abort, retry, fail messages?
what are the advantages of a macro over a function?
What is the proper way of these job Tell me about there full work
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
What is ctrl c called?
How can variables be characterized?
Is that possible to store 32768 in an int data type variable?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }