the real constant in c can be expressed in which of the following forms
a) fractional form only
b) exponential form only
c) ascii form only
d) both a and b
No Answer is Posted For this Question
Be the First to Post Answer
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Are negative numbers true in c?
Is stack a keyword in c?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
Which are low level languages?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
What is Lazy evaluation in C? Give an example.
What is wrong with this statement? Myname = 'robin';
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is the difference between null pointer and wild pointer?
What is strcmp in c?