Is c is a procedural language?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What are c identifiers?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
String concatenation
What is static volatile in c?
how to find the binary of a number?
Why flag is used in c?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
wat is the difference between array and pointer?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?