When should the volatile modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
What are identifiers in c?
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What are variables c?
What would be an example of a structure analogous to structure c?
What is queue in c?
What does static mean in c?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
how to find the size of the data type like int,float without using the sizeof operator?
What is the general form of #line preprocessor?
What is c standard library?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }