Explain how do you determine the length of a string value that was stored in a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What's a "sequence point"?
What is the purpose of sprintf?
post new interiew question and aptitude test papers
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is dynamic dispatch in c++?
Write a program in c to print * * * * * *******
How to add two numbers with using function?
Explain 'bit masking'?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What is function definition in c?