Why clrscr is used after variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
where do we use volatile keyword?
What is meant by realloc()?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
What is the difference between %d and %*d in C
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
What is the purpose of 'register' keyword?
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
What are the types of functions in c?
Give a method to count the number of ones in a 32 bit number?