What is c language used for?
No Answer is Posted For this Question
Be the First to Post Answer
What is the restrict keyword in C?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Explain why can’t constant values be used to define an array’s initial size?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What is the right type to use for boolean values in c? Is there a standard type?
difference between function & structure
write a program to create a sparse matrix using dynamic memory allocation.
Why use int main instead of void main?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What oops means?
write a addition of two no. program with out using printf,scanf,puts .
What is #line used for?