What is the difference between constant pointer and constant variable?
No Answer is Posted For this Question
Be the First to Post Answer
What are the features of c languages?
Can you please explain the difference between strcpy() and memcpy() function?
What is the difference between typedef struct and struct?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What is meant by operator precedence?
why should i select you?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Is c is a procedural language?
What is the difference between constant pointer and pointer to a constant. Give examples.
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Software Interview Questions
Do you know the use of fflush() function?