What is the size of empty structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can a variable be both static and volatile in c?
Explain high-order and low-order bytes.
What does return 1 means in c?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
What is the use of parallelize in spark?
Compare and contrast compilers from interpreters.
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What does it mean when the linker says that _end is undefined?
What are the advantages of Macro over function?
Explain the Difference between the New and Malloc keyword.
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }