Can a pointer be volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
Does * p ++ increment p or what it points to?
write a program to display the frequency of each element in a given array in c language
write a program whose output will be- 1 12 123 1234
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
WHAT IS PRE POSSESSORS?
Explain what math functions are available for integers? For floating point?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Why do we use int main?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
What is the advantage of a random access file?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
What is the difference between ‘g’ and “g” in C?