How many loops are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What are predefined functions in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
a simple c program using 'for' loop to display the output 5 4 3 2 1
How can I read in an object file and jump to locations in it?
Explain the use of 'auto' keyword in c programming?
What does 4d mean in c?
How pointer is benefit for design a data structure algorithm?
what is the flow of execution in cprogram? ex:printf();,scanf();
Is the following code legal? struct a { int x; struct a b; }