What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
What are unions in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
What are variables and it what way is it different from constants?
Is c procedural or object oriented?
What are the advantages of using Unions?
Why is c fast?
What is stack in c?
What is an lvalue?