What is derived datatype in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
What are qualifiers and modifiers c?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What is the difference between functions abs() and fabs()?
What are bitwise shift operators in c programming?
Why do we use static in c?
Where register variables are stored in c?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
What do you mean by invalid pointer arithmetic?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
what is the benefit of c30