What is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
What is time null in c?
How can I invoke another program from within a C program?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
if we take a number as a char then can we manipulate(add, subtract) on this number
How reliable are floating-point comparisons?
What is the memory allocated by the following definition ? int (*x)[10];
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
What is the difference between static and global variables?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
where do we use volatile keyword?