What will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
Can an array be an Ivalue?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Why cann't whole array can be passed to function as value.
What is string function in c?
swap two integer variables without using a third temporary variable?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain a file operation in C with an example.
how to find the binary of a number?
What is the use of bit field?
Can we declare a function inside a function in c?
i want to know aptitude questions,technical questions
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL