Without Computer networks, Computers will be half the use.
Comment.
No Answer is Posted For this Question
Be the First to Post Answer
How does the C program handle segmentation faults?
What is structure of c program?
Which one would you prefer - a macro or a function?
What are the advantages of external class?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
fn f(x) { if(x<=0) return; else f(x-1)+x; }
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
what is Array?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement