how is the examination pattern?
No Answer is Posted For this Question
Be the First to Post Answer
Can you mix old-style and new-style function syntax?
Can we compile a program without main() function?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is n in c?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
What is the ANSI C Standard?
Explain built-in function?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(“%d”,x); --x; } }
create an SINGLE LINKED LISTS and reverse the data in the lists completely
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How does selection sort work in c?
What are types of preprocessor in c?