Do you know what are bitwise shift operators in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Explain how do you determine a file’s attributes?
What does int main () mean?
What is a structural principle?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is use of integral promotions in c?
What does #pragma once mean?
What is macro?
What is the difference between union and structure in c?
what do you mean by enumeration constant?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,