Explain Basic concepts of C language?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
What is wild pointer in c with example?
WHAT IS FLOAT?
What does typedef struct mean?
What is the difference b/w Structure & Class?
What are macros in C?
What are the 5 data types?
Explain what is the most efficient way to store flag values?
why effort estimation is important?
Can true be a variable name in c?
Compare interpreters and compilers.