What the different types of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to find the size of the data type like int,float without using the sizeof operator?
Difference between malloc() and calloc() function?
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
How many bytes are occupied by near, far and huge pointers (dos)?
what is the use of using linked list and array?
What is main function in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Explain how can you avoid including a header more than once?
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
Explain how do you print an address?
explain what is a newline escape sequence?