What is difference between static and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
WHAT IS FLOAT?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
what is ans for this scanf(%%d",c);
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
I need previous papers of CSC.......plz help out by posting them.......
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is the correct declaration of main?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
what is the difference between global variable & static variable declared out side all the function in the file.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..