Differentiate fundamental data types and derived data types in C.
No Answer is Posted For this Question
Be the First to Post Answer
How can I increase the allowable number of simultaneously open files?
What is the difference between macros and inline functions?
What is the purpose of void pointer?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
what is c
what is the difference between declaration and definition of a variable or function ?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
what is array?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
what are # pragma staments?
Is c is a procedural language?
Does * p ++ increment p or what it points to?