What is volatile, register definition in C
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of main( ) in c language?
why do we use pointer instead directly acessing the data?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
what is an inline function?
what does keyword ‘extern’ mean in a function declaration?
What is the difference between the expression “++a” and “a++”?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Write a program to print the prime numbers from 1 to 100?
What is the scope of static variables?
what are the advantage and disadvantage of recursion
what is the use of operator ^ in C ? and how it works?