Program to find GPA using If-else statement Gulzar Sheikh 09:56Program to find GPA using IF-ELSE statement: #include<stdio.h> int main() { int mark1,mark2,mark3,mark4,mark5,totalmarks,sum; ... Read more 2 comments:
Escape Sequence in C/C++ Gulzar Sheikh 11:31Escape Sequence: .It indicates that printf is supposed to do something out of the ordinary. When encountering a backslash in a string, Esca... Read more 2 comments: