What is the difference between local variable and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
please give me some tips for the placement in the TCS.
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What is the right type to use for boolean values in c? Is there a standard type?
What are local variables c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
How do you access command-line arguments?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
Explain what is wrong with this program statement?
How to establish connection with oracle database software from c language?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???