What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can you subtract pointers from each other? Why would you?
Is struct oop?
How can I invoke another program from within a C program?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
how to generate the length of a string without using len funtion?
What is the difference between class and object in c?
What is the difference between printf and scanf )?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
What is calloc in c?
#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
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none