What is || operator and how does it function in a program?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What are macros in C?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
how to swap 2 numbers in a single statement?
Explain what does a function declared as pascal do differently?
What is merge sort in c?
how to print 212 as Twohundreds twelve plz provide me ans soon
How many types of operators are there in c?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is meant by 'bit masking'?
Why c is called top down?