Do pointers need to be initialized?
No Answer is Posted For this Question
Be the First to Post Answer
Why pointers are used?
Tell us two differences between new () and malloc ()?
If the size of int data type is two bytes, what is the range of signed int data type?
What happens if header file is included twice?
Explain that why C is procedural?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What language is windows 1.0 written?
Write a program that receives as input a number omaadel-n-print, four digits.
what does " calloc" do?
How can you print HELLO WORLD without using "semicolon"?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration