What is scope rule of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
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
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
Why can’t constant values be used to define an array’s initial size?
find out largest elemant of diagonalmatrix
what type of questions arrive in interview over c programming?
Describe advantages and disadvantages of the various stock sorting algorithms
What happens if header file is included twice?
different between overloading and overriding