What is difference between constant pointer and constant variable?
No Answer is Posted For this Question
Be the First to Post Answer
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
what is the difference b/w NULL and null?
Which is more efficient, a switch statement or an if else chain?
What is #include in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Why do we use return in c?
pgm to find middle element of linklist(in efficent manner)
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
what is the output of below int n=10; (n++)++; printf("%d",n);