What are keywords in c with examples?
No Answer is Posted For this Question
Be the First to Post Answer
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
How can variables be characterized?
What is pragma in c?
write a program whose output will be- 1 12 123 1234
What is pass by reference in functions?
What is the difference between pure virtual function and virtual function?
Can you please explain the scope of static variables?
What are types of structure?
Explain what is wrong with this program statement?
Why flag is used in c?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12