What is a volatile keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is hash table in c?
What are structures and unions? State differencves between them.
difference between ordinary variable and pointer in C?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Explain 'far' and 'near' pointers in c.
how to find that no is int or float?
Why do we use int main?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
main difference between c and c++ language