What are extern variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
Describe the order of precedence with regards to operators in C.
What is wrong with this program statement? void = 10;
What are the types of bitwise operator?
Write a c program to demonstrate character and string constants?
What is int main () in c?
The file stdio.h, what does it contain?
Tell me the use of bit field in c language?
What is Bitwise Operator and how it works?
write a program that will print %d in the output screen??
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
What is double pointer in c?