Can a local variable be volatile in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is 1d array in c?
How to write a multi-statement macro?
What are preprocessor directives?
Which programming language is best for getting job 2020?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is data structure in c and its types?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function