How many types of errors are there in c language? Explain
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Can a binary search tree be used as an index? If yes, how? Explain
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
How can I do peek and poke in c?
User define function contain thier own address or not.
Explain what are multibyte characters?
What are the differences between new and malloc in C?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
void main() { int i=5; printf("%d",i++ + ++i); }