Can a variable be both static and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
c program to add and delete an element from circular queue using array
Where local variables are stored in c?
What is const keyword in c?
how to build a exercise findig min number of e heap with list imlemented?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What is Dynamic Initialization.
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?