Why c is called free form language?
No Answer is Posted For this Question
Be the First to Post Answer
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Explain how do you declare an array that will hold more than 64kb of data?
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
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
Do you know the difference between exit() and _exit() function in c?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Explain union. What are its advantages?
Are there any problems with performing mathematical operations on different variable types?
What is adt in c programming?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is the use of clrscr?