List some of the static data structures in C?
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
Why use int main instead of void main?
Is c programming hard?
What is null pointer in c?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
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
Which is better oop or procedural?
Write a pro-gramme to determine whether the number is even or odd?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What is 02d in c?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory