Explain the use of 'auto' keyword
No Answer is Posted For this Question
Be the First to Post Answer
Explain which function in c can be used to append a string to another string?
Do variables need to be initialized?
What is sorting in c plus plus?
Explain what is the difference between a string and an array?
Is a house a mass structure?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
how many errors in c explain deply
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Expand the following LKB BKL FFG
What are unions in c?