Write a c program to demonstrate character and string constants?
No Answer is Posted For this Question
Be the First to Post Answer
what different between c and c++
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
What is "Hungarian Notation"?
Why do we need arrays in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
What is pointer to pointer in c?
How do I declare a pointer to an array?
Write a program to print factorial of given number without using recursion?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }