Is it possible to use curly brackets ({}) to enclose single line code in c program?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
Explain what is the most efficient way to store flag values?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What does sizeof int return?
Write a simple program to find the size of different basic data types in C.
Differentiate between ordinary variable and pointer in c.
What is floating point constants?
write a program to copy a string without using a string?
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
main() { printf(5+"Vidyarthi Computers"); }
Compare array data type to pointer data type
What are preprocessor directives in c?