the expression a=30*1000+2768; evalutes to
a) 32768
b) -32768
c) 113040
d) 0
What is information technology.
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is C language ?
What is string constants?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Explain what are header files and explain what are its uses in c programming?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
Do you know the difference between exit() and _exit() function in c?
How to reverse a string using a recursive function, with swapping?
Why is void main used?
Is c language still used?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.