How do I use void main?
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What is a dynamic array in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
What is the advantage of c?
What is return in c programming?
formula to convert 2500mmh2o into m3/hr
What does %c do in c?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?