When do we get logical errors?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can type-insensitive macros be created?
What is the difference between malloc() and calloc()?
Explain high-order and low-order bytes.
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are the c keywords?
Write a c program to print the sizes and ranges of different data types in c?
What are types of structure?
Differentiate call by value and call by reference?
How many bytes is a struct in c?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What does main () mean in c?