Why is c so popular?
No Answer is Posted For this Question
Be the First to Post Answer
What are formal parameters?
What is the purpose of & in scanf?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What are compound statements?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Disadvantages of C language.
c program to manipulate x=1!+2!+3!+...+n! using recursion
Is c still used?
What is difference between class and structure?
to get a line of text and count the number of vowels in it
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
What is linear search?