How can this be legal c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the preprocessor categories?
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
number of times a digit is present in a number
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
What do you mean by recursion in c?
What are bitwise shift operators in c programming?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));