How to compare array with pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does sizeof function do?
What is I ++ in c programming?
What are qualifiers in c?
#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 #define in c?
What is an volatile variable?
User define function contain thier own address or not.
C program to read the integer and calculate sum and average using single dimensional array
how to add numbers without using arithmetic operators.
Can we declare a function inside a function in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is the memory allocated by the following definition ? int (*x)();